From eccba1d9e7fd9fd6ce220b47c07867ac92e58d52 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Tue, 1 Feb 2011 13:16:06 -0700 Subject: [PATCH] Removed unnecessary loud debugging. --- src/ipc/StrandCoord.cc | 2 -- src/store_dir.cc | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) 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; } -- 2.47.2