From: Michael Vrable Date: Mon, 16 Apr 2007 04:51:41 +0000 (-0700) Subject: Reduce debugging output. X-Git-Url: https://git.vrable.net/?a=commitdiff_plain;h=cd2d1c60a8e9beb76e3dbb0fca8a33d38bac3864;p=cumulus.git Reduce debugging output. --- diff --git a/tarstore.cc b/tarstore.cc index 78b089b..2c2f523 100644 --- a/tarstore.cc +++ b/tarstore.cc @@ -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;