From: Amos Jeffries Date: Mon, 26 Nov 2012 08:30:30 +0000 (-0700) Subject: Bug 3329: Polish: reference bugzilla record in cache.log to prevent duplicates X-Git-Tag: SQUID_3_2_4~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f99e48256ef43d83782f11fe1034280c01cb756;p=thirdparty%2Fsquid.git Bug 3329: Polish: reference bugzilla record in cache.log to prevent duplicates --- diff --git a/src/comm/Connection.cc b/src/comm/Connection.cc index 222da0b6ec..88c9aa758a 100644 --- a/src/comm/Connection.cc +++ b/src/comm/Connection.cc @@ -27,8 +27,8 @@ static int64_t lost_conn = 0; Comm::Connection::~Connection() { if (fd >= 0) { - debugs(5, 0, "BUG: Orphan Comm::Connection: " << *this); - debugs(5, 0, "NOTE: " << ++lost_conn << " Orphans since last started."); + debugs(5, DBG_CRITICAL, "BUG #3329: Orphan Comm::Connection: " << *this); + debugs(5, DBG_CRITICAL, "NOTE: " << ++lost_conn << " Orphans since last started."); close(); }