From 8e51e5c189a10ff7964fb2515b63df43363ff6e2 Mon Sep 17 00:00:00 2001 From: rousskov <> Date: Fri, 7 Sep 2007 21:10:50 +0000 Subject: [PATCH] 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. --- src/BodyPipe.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2