From: wessels <> Date: Tue, 20 Dec 2005 06:06:54 +0000 (+0000) Subject: inserting HERE into some debugs() X-Git-Tag: SQUID_3_0_PRE4~443 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa761e5f055bdf41b9ab811d3627a28eb91afa5d;p=thirdparty%2Fsquid.git inserting HERE into some debugs() --- diff --git a/src/ICAP/ICAPModXact.cc b/src/ICAP/ICAPModXact.cc index 26650e5e38..30ed865c07 100644 --- a/src/ICAP/ICAPModXact.cc +++ b/src/ICAP/ICAPModXact.cc @@ -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)