diff --git a/FitsIOServer/fitstarray.cc b/FitsIOServer/fitstarray.cc
index 91c5cdf5bb53827a818eb6383e55ea0e9c359844..93367147611117f2079e0a0a6a912e00e82ab2e3 100644
--- a/FitsIOServer/fitstarray.cc
+++ b/FitsIOServer/fitstarray.cc
@@ -111,13 +111,13 @@ void FITS_TArray<T>::WriteToFits(FitsOutFile& os)
     {
       throw PException(" FITS_TARRAY: number of dimensions of the array = 0?");
     }
-  cout << "FITS_TARRAY: nombre de dimension du tableau a ecrire: " << nbdim << endl;
+  //cout << "FITS_TARRAY: nombre de dimension du tableau a ecrire: " << nbdim << endl;
   int* naxisn = new int[nbdim];
   int k;
   for (k=0; k< nbdim; k++)
     {
       naxisn[k] = dobj_->Size(k);
-      cout << " nombre de donnees dans la la dimension " << k << " : " << naxisn[k] << endl;
+     // cout << " nombre de donnees dans la la dimension " << k << " : " << naxisn[k] << endl;
     }
   char type;
   if ( typeid(T) == typeid(r_8) ) type='D';
@@ -136,7 +136,7 @@ void FITS_TArray<T>::WriteToFits(FitsOutFile& os)
     {
       if (naxisn[k] > 0) nbels *= naxisn[k];
     }
-  cout << " nombre total d'elements a copier " << nbels << endl;
+ // cout << " nombre total d'elements a copier " << nbels << endl;
   DVList dvl( dobj_->Info() );  
   dvl["Content"]= "TArray";
   dvl.SetComment("Content", "name of SOPHYA object");