From: rousskov <> Date: Fri, 7 Sep 2007 21:10:50 +0000 (+0000) Subject: Bug 2067: do not print "aborting on premature eof" messages at debug level 1. X-Git-Tag: SQUID_3_0_RC1~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e51e5c189a10ff7964fb2515b63df43363ff6e2;p=thirdparty%2Fsquid.git Bug 2067: do not print "aborting on premature eof" messages at debug level 1. This messages are printed, for example, whenever the origin server closes the connection prematurely. No need to warn the cache admin about such events. --- diff --git a/src/BodyPipe.cc b/src/BodyPipe.cc index a1e547a175..45c9c4813b 100644 --- a/src/BodyPipe.cc +++ b/src/BodyPipe.cc @@ -93,7 +93,7 @@ BodyPipe::clearProducer(bool atEof) theBodySize = thePutSize; else if (bodySize() != thePutSize) - debugs(91,1, HERE << "aborting on premature eof" << status()); + debugs(91,3, HERE << "aborting on premature eof" << status()); } else { // asserta that we can detect the abort if the consumer joins later assert(!bodySizeKnown() || bodySize() != thePutSize);