Reduce debugging output.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Mon, 16 Apr 2007 04:51:41 +0000 (21:51 -0700)
committerMichael Vrable <mvrable@turin.ucsd.edu>
Mon, 16 Apr 2007 04:51:41 +0000 (21:51 -0700)
tarstore.cc

index 78b089b..2c2f523 100644 (file)
@@ -45,7 +45,6 @@ void Tarfile::write_object(int id, const char *data, size_t len)
     char buf[64];
     sprintf(buf, "%08x", id);
     string path = segment_name + "/" + buf;
-    printf("path: %s\n", path.c_str());
 
     internal_write_object(path, data, len);
 
@@ -74,8 +73,6 @@ void Tarfile::internal_write_object(const string &path,
     if (th_write(t) != 0)
         throw IOException("Error writing tar header");
 
-    th_print(t);
-
     if (len == 0)
         return;