From: wessels <> Date: Fri, 30 Dec 2005 01:05:20 +0000 (+0000) Subject: Simple debugging message addition and change X-Git-Tag: SQUID_3_0_PRE4~407 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5cfacfb5ce3690f67440dd53217c2861bf147db;p=thirdparty%2Fsquid.git Simple debugging message addition and change --- diff --git a/src/ICAP/ICAPModXact.cc b/src/ICAP/ICAPModXact.cc index ac5fed9a54..b6055b3c80 100644 --- a/src/ICAP/ICAPModXact.cc +++ b/src/ICAP/ICAPModXact.cc @@ -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; }