From 2756b886fee7e4d4ebd0f7611d87f67c4e365418 Mon Sep 17 00:00:00 2001 From: michim Date: Thu, 19 May 2011 22:15:53 +0000 Subject: [PATCH] removed debug printfs git-svn-id: svn+ssh://svn.corp.yahoo.com/yahoo/yrl/labs/pnuts/code/logstore@2574 8dad8b1f-cf64-0410-95b6-bcf113ffbcfe --- sherpa/LSMServerHandler.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sherpa/LSMServerHandler.cc b/sherpa/LSMServerHandler.cc index fe52a05..3a75fb9 100644 --- a/sherpa/LSMServerHandler.cc +++ b/sherpa/LSMServerHandler.cc @@ -211,9 +211,6 @@ scan(RecordListResponse& _return, const std::string& databaseName, const ScanOrd } int cmp = datatuple::compare_obj(current, start); - std::cout << "start key: (" << std::string((const char*)(start->strippedkey()), start->strippedkeylen()) << ")" << std::endl; - std::cout << "current key: (" << std::string((const char*)(current->strippedkey()), current->strippedkeylen()) << ")" << std::endl; - std::cout << "start key: " << startKey << " cmp: " << cmp << std::endl; if ((!startKeyIncluded) && cmp == 0) { datatuple::freetuple(current); continue; @@ -221,7 +218,6 @@ scan(RecordListResponse& _return, const std::string& databaseName, const ScanOrd // are we at the end of range? cmp = datatuple::compare_obj(current, end); - std::cout << "end key: " << endKey << " cmp: " << cmp << std::endl; if ((!endKeyIncluded && cmp >= 0) || (endKeyIncluded && cmp > 0)) { datatuple::freetuple(current);