]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Simple debugging message addition and change
authorwessels <>
Fri, 30 Dec 2005 01:05:20 +0000 (01:05 +0000)
committerwessels <>
Fri, 30 Dec 2005 01:05:20 +0000 (01:05 +0000)
src/ICAP/ICAPModXact.cc

index ac5fed9a54169a4cf2ff83b8667577c0a9bd0fb3..b6055b3c805d6a58804207df48cac0759790604c 100644 (file)
@@ -524,7 +524,7 @@ void ICAPModXact::parseMore()
 {
     debugs(93, 5, HERE << "have " << readBuf.contentSize() << " bytes to parse" <<
            status());
-    debugs(93, 5, HERE << readBuf.content());
+    debugs(93, 5, HERE << "\n" << readBuf.content());
 
     if (state.parsingHeaders())
         parseHeaders();
@@ -737,6 +737,7 @@ bool ICAPModXact::parseHead(HttpMsg *head)
     Must(parsed || !error); // success or need more data
 
     if (!parsed) {     // need more data
+        debugs(93, 5, HERE << "parse failed, need more data");
         head->reset();
         return false;
     }