diff options
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r-- | lib/Handle.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc index f77b0c3..da29a51 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -7,7 +7,7 @@ #include "config.h" Handle::Handle(const Handle & nh) : h(nh.h >= 0 ? dup(nh.h) : nh.h), closed(nh.closed), nonblock(nh.closed), zfile(0), z(0) { - cerr << "Duplication of handle " << nh.h << " to " << h << endl; +// cerr << "Duplication of handle " << nh.h << " to " << h << endl; if ((h >= 0) && (nh.z)) { SetZ(nh.z); } @@ -218,7 +218,7 @@ void Handle::SetZ(int az) throw (GeneralException) { } format[index++] = (char) (az + '0'); format[index] = 0; - cerr << "Performing gzdopen on handle " << h << " with mode \"" << format << "\"\n"; +// cerr << "Performing gzdopen on handle " << h << " with mode \"" << format << "\"\n"; if (!(zfile = gzdopen(h, format))) { throw GeneralException(_("Was not able to gzdopen.")); } |