From: Michael Vrable Date: Tue, 15 May 2007 05:30:37 +0000 (-0700) Subject: Debugging message cleanup. X-Git-Url: http://git.vrable.net/?a=commitdiff_plain;h=c7c7041c1b79ffb27647d74a6a345dfcfbf9f190;hp=0a76f30b578a2ace26090a4b9bbd74b04124a20e;p=cumulus.git Debugging message cleanup. --- diff --git a/localdb.cc b/localdb.cc index 4ab8283..733babd 100644 --- a/localdb.cc +++ b/localdb.cc @@ -105,8 +105,6 @@ ObjectReference LocalDb::FindObject(const string &checksum, int64_t size) rc = sqlite3_step(stmt); if (rc == SQLITE_DONE) { } else if (rc == SQLITE_ROW) { - printf("Can re-use block: %s/%s\n", - sqlite3_column_text(stmt, 0), sqlite3_column_text(stmt, 1)); ref = ObjectReference((const char *)sqlite3_column_text(stmt, 0), (const char *)sqlite3_column_text(stmt, 1)); } else {