projects
/
cumulus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a76f30
)
Debugging message cleanup.
author
Michael Vrable
<mvrable@cs.ucsd.edu>
Tue, 15 May 2007 05:30:37 +0000
(22:30 -0700)
committer
Michael Vrable
<mvrable@turin.ucsd.edu>
Tue, 15 May 2007 05:30:37 +0000
(22:30 -0700)
localdb.cc
patch
|
blob
|
history
diff --git
a/localdb.cc
b/localdb.cc
index
4ab8283
..
733babd
100644
(file)
--- 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 {