]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
inserting HERE into some debugs()
authorwessels <>
Tue, 20 Dec 2005 06:06:54 +0000 (06:06 +0000)
committerwessels <>
Tue, 20 Dec 2005 06:06:54 +0000 (06:06 +0000)
src/ICAP/ICAPModXact.cc

index 26650e5e38ea8c16227a2edbd0e5116beb8e88c7..30ed865c079ff604ebac7e2bd46f3b0dd924159d 100644 (file)
@@ -522,7 +522,7 @@ void ICAPModXact::stopReceiving()
 
 void ICAPModXact::parseMore()
 {
-    debugs(93, 5, "have " << readBuf.contentSize() << " bytes to parse" <<
+    debugs(93, 5, HERE << "have " << readBuf.contentSize() << " bytes to parse" <<
            status());
 
     if (state.parsingHeaders())
@@ -719,7 +719,7 @@ void ICAPModXact::parseBody()
 {
     Must(state.parsing == State::psBody);
 
-    debugs(93, 5, "have " << readBuf.contentSize() << " body bytes to parse");
+    debugs(93, 5, HERE << "have " << readBuf.contentSize() << " body bytes to parse");
 
     if (gotEncapsulated("res-body")) {
         if (!parsePresentBody()) // need more body data
@@ -743,7 +743,7 @@ bool ICAPModXact::parsePresentBody()
 
     adapted->sendSourceProgress(); // TODO: do not send if parsed nothing
 
-    debugs(93, 5, "have " << readBuf.contentSize() << " body bytes after " <<
+    debugs(93, 5, HERE << "have " << readBuf.contentSize() << " body bytes after " <<
            "parse; parsed all: " << parsed);
 
     if (parsed)