]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 2067: do not print "aborting on premature eof" messages at debug level 1.
authorrousskov <>
Fri, 7 Sep 2007 21:10:50 +0000 (21:10 +0000)
committerrousskov <>
Fri, 7 Sep 2007 21:10:50 +0000 (21:10 +0000)
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

index a1e547a175afa0e9e772c100da1bf28cb723d562..45c9c4813b5ea5d2c57243c3381719c350209884 100644 (file)
@@ -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);