From: Alex Rousskov Date: Tue, 1 Feb 2011 20:16:06 +0000 (-0700) Subject: Removed unnecessary loud debugging. X-Git-Tag: take02~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eccba1d9e7fd9fd6ce220b47c07867ac92e58d52;p=thirdparty%2Fsquid.git Removed unnecessary loud debugging. --- diff --git a/src/ipc/StrandCoord.cc b/src/ipc/StrandCoord.cc index 703a7aafd2..6116437087 100644 --- a/src/ipc/StrandCoord.cc +++ b/src/ipc/StrandCoord.cc @@ -27,14 +27,12 @@ Ipc::StrandCoord::unpack(const TypedMsgHdr &hdrMsg) hdrMsg.getPod(kidId); hdrMsg.getPod(pid); hdrMsg.getString(tag); -debugs(0,0, HERE << "getting tag: " << tag); } void Ipc::StrandCoord::pack(TypedMsgHdr &hdrMsg) const { hdrMsg.putPod(kidId); hdrMsg.putPod(pid); -debugs(0,0, HERE << "putting tag: " << tag); hdrMsg.putString(tag); } diff --git a/src/store_dir.cc b/src/store_dir.cc index 85b2d67c12..69eb361930 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -704,7 +704,7 @@ StoreController::get(const cache_key *key) static int idx = 0; SwapDir *sd = dynamic_cast(INDEXSD(idx)); if (StoreEntry *e = sd->get(key)) { - debugs(20, 1, HERE << "cache_dir " << idx << + debugs(20, 3, HERE << "cache_dir " << idx << " got cached entry: " << *e); return e; } @@ -712,7 +712,7 @@ StoreController::get(const cache_key *key) } } - debugs(20, 1, HERE << "none of " << Config.cacheSwap.n_configured << + debugs(20, 4, HERE << "none of " << Config.cacheSwap.n_configured << " cache_dirs have " << storeKeyText(key)); return NULL; }