Remove some chatty debug.

This commit is contained in:
JoelKatz
2012-10-15 03:48:31 -07:00
parent 33017a35a8
commit 1214be1f22
2 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ void HashedObjectStore::bulkWrite()
return;
}
}
cLog(lsINFO) << "HOS: writing " << set.size();
// cLog(lsINFO) << "HOS: writing " << set.size();
static boost::format fExists("SELECT ObjType FROM CommittedObjects WHERE Hash = '%s';");
static boost::format

View File

@@ -749,8 +749,8 @@ int SHAMap::flushDirty(int maxNodes, HashedObjectType t, uint32 seq)
boost::unordered_map<SHAMapNode, SHAMapTreeNode::pointer>::iterator it = dirtyNodes.begin();
while (it != dirtyNodes.end())
{
tLog(mType == smtTRANSACTION, lsDEBUG) << "TX node write " << it->first;
tLog(mType == smtSTATE, lsDEBUG) << "STATE node write " << it->first;
// tLog(mType == smtTRANSACTION, lsDEBUG) << "TX node write " << it->first;
// tLog(mType == smtSTATE, lsDEBUG) << "STATE node write " << it->first;
s.erase();
it->second->addRaw(s, snfPREFIX);
theApp->getHashedObjectStore().store(t, seq, s.peekData(), s.getSHA512Half());