Debugging message cleanup.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Tue, 15 May 2007 05:30:37 +0000 (22:30 -0700)
committerMichael Vrable <mvrable@turin.ucsd.edu>
Tue, 15 May 2007 05:30:37 +0000 (22:30 -0700)
localdb.cc

index 4ab8283..733babd 100644 (file)
@@ -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 {