]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Removed unnecessary loud debugging.
authorAlex Rousskov <rousskov@measurement-factory.com>
Tue, 1 Feb 2011 20:16:06 +0000 (13:16 -0700)
committerAlex Rousskov <rousskov@measurement-factory.com>
Tue, 1 Feb 2011 20:16:06 +0000 (13:16 -0700)
src/ipc/StrandCoord.cc
src/store_dir.cc

index 703a7aafd24a4b009bbe94cf58b7702e8a5e9a43..61164370870bee890a646c878961cb8e41b156b1 100644 (file)
@@ -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);
 }
 
index 85b2d67c12d6c91682663acc225d6f3a5e29fe5a..69eb361930fe0087dddb3fb97df104d5c0305ede 100644 (file)
@@ -704,7 +704,7 @@ StoreController::get(const cache_key *key)
             static int idx = 0;
             SwapDir *sd = dynamic_cast<SwapDir*>(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;
 }