--- cinstall/compress_bz.cc-0	Mon Jan 21 10:38:59 2002
+++ cinstall/compress_bz.cc	Mon Jan 28 23:04:14 2002
@@ -137,7 +137,6 @@ ssize_t compress_bz::write (const void *
 
 ssize_t compress_bz::peek (void *buffer, size_t len)
 {
-  log (LOG_TIMESTAMP, "compress_bz::peek called");
   if (writing)
   {
     lasterr = EBADF;
@@ -178,8 +177,8 @@ compress_bz::tell ()
 int
 compress_bz::seek (long where, io_stream_seek_t whence)
 {
-    log (LOG_TIMESTAMP, "compress_bz::seek called");
-      return -1;
+  log (LOG_BABBLE, "compress_bz::seek called");
+  return -1;
 }
 
 int
@@ -207,7 +206,6 @@ compress_bz::get_mtime ()
 
 compress_bz::~compress_bz ()
 {
-  log (LOG_BABBLE, "compress_bz::~bz called");
   if (initialisedOk)
     BZ2_bzDecompressEnd (&strm);
   destroyed = 1;
--- cinstall/compress_gz.cc-0	Mon Jan 21 10:38:59 2002
+++ cinstall/compress_gz.cc	Mon Jan 28 23:05:56 2002
@@ -374,7 +374,6 @@ compress_gz::write (const void *buffer, 
 ssize_t
 compress_gz::peek (void *buffer, size_t len)
 {
-  log (LOG_TIMESTAMP, "compress_gz::peek called");
   if (mode != 'r')
     return Z_STREAM_ERROR;
   /* can only peek 512 bytes */
@@ -411,14 +410,13 @@ compress_gz::tell ()
 int
 compress_gz::seek (long where, io_stream_seek_t whence)
 {
-  log (LOG_TIMESTAMP, "compress_gz::seek called");
+  log (LOG_BABBLE, "compress_gz::seek called");
   return -1;
 }
 
 int
 compress_gz::error ()
 {
-//  log (LOG_TIMESTAMP, "compress_gz::error called");
   return z_err;
 }
 
@@ -466,7 +464,6 @@ compress_gz::destroy ()
 
 compress_gz::~compress_gz ()
 {
-  log (LOG_TIMESTAMP, "compress_gz::~gz called");
   if (mode == 'w')
     {
       z_err = do_flush (Z_FINISH);
--- cinstall/io_stream.cc-0	Thu Jan 24 16:44:00 2002
+++ cinstall/io_stream.cc	Mon Jan 28 22:39:11 2002
@@ -46,7 +46,7 @@ io_stream::factory (io_stream * parent)
    * case io_stream * foo = new bz2
    * return foo
    */
-  log (LOG_TIMESTAMP, "io_stream::factory has been called");
+  log (LOG_TIMESTAMP, "io_stream::factory called");
   return NULL;
 }
 
@@ -273,6 +273,6 @@ io_stream::exists (const char *name)
 io_stream::~io_stream ()
 {
   if (!destroyed)
-    log (LOG_TIMESTAMP, "io_stream::~io_stream: It looks like a class hasn't overriden the destructor!");
+    log (LOG_TIMESTAMP, "io_stream::~io_stream: not overriden!");
   return;
 }
--- cinstall/io_stream_cygfile.cc-0	Mon Jan 21 10:39:00 2002
+++ cinstall/io_stream_cygfile.cc	Mon Jan 28 23:00:40 2002
@@ -202,7 +202,6 @@ io_stream_cygfile::write (const void *bu
 ssize_t
 io_stream_cygfile::peek (void *buffer, size_t len)
 {
-  log (LOG_TIMESTAMP, "io_stream_cygfile::peek called");
   if (fp)
     {
       int pos = ftell (fp);
--- cinstall/io_stream_file.cc-0	Mon Jan 21 10:39:01 2002
+++ cinstall/io_stream_file.cc	Mon Jan 28 23:00:15 2002
@@ -23,7 +23,6 @@ static const char *cvsid =
 #include <stdlib.h>
 #include <errno.h>
 #include <unistd.h>
-#include "log.h"
 #include "port.h"
 #include "mklink2.h"
 
@@ -137,7 +136,6 @@ io_stream_file::write (const void *buffe
 ssize_t
 io_stream_file::peek (void *buffer, size_t len)
 {
-  log (LOG_TIMESTAMP, "io_stream_file::peek called");
   if (fp)
     {
       int pos = ftell (fp);
