From: Alex Dowad Date: Wed, 29 Apr 2015 11:26:53 +0000 (-0700) Subject: Cleanup: Display correct error code in debugging output for IoCallback::finish X-Git-Tag: merge-candidate-3-v1~144 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=872a54bafece614cfb2c3542da25b2e1e3d19c97;p=thirdparty%2Fsquid.git Cleanup: Display correct error code in debugging output for IoCallback::finish It seems clear that the debugging log message in IoCallback::finish was intended to display the arguments passed to the method. --- diff --git a/src/comm/IoCallback.cc b/src/comm/IoCallback.cc index b28c8ec0b1..188805c85d 100644 --- a/src/comm/IoCallback.cc +++ b/src/comm/IoCallback.cc @@ -113,7 +113,7 @@ Comm::IoCallback::reset() void Comm::IoCallback::finish(Comm::Flag code, int xerrn) { - debugs(5, 3, HERE << "called for " << conn << " (" << code << ", " << xerrno << ")"); + debugs(5, 3, "called for " << conn << " (" << code << ", " << xerrn << ")"); assert(active()); /* free data */