From: Amos Jeffries Date: Sun, 18 Nov 2012 11:32:00 +0000 (-0700) Subject: Bug 3329: Polish: reference the bugzilla number in cache.log to prevent duplicates X-Git-Tag: SQUID_3_3_0_2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9cd5be16fd592fd456508d80d1bd1e5e03080df;p=thirdparty%2Fsquid.git Bug 3329: Polish: reference the bugzilla number in cache.log to prevent duplicates --- diff --git a/src/comm/Connection.cc b/src/comm/Connection.cc index e73923285f..4bb65defd6 100644 --- a/src/comm/Connection.cc +++ b/src/comm/Connection.cc @@ -29,7 +29,7 @@ static int64_t lost_conn = 0; Comm::Connection::~Connection() { if (fd >= 0) { - debugs(5, DBG_CRITICAL, "BUG: Orphan Comm::Connection: " << *this); + debugs(5, DBG_CRITICAL, "BUG #3329: Orphan Comm::Connection: " << *this); debugs(5, DBG_CRITICAL, "NOTE: " << ++lost_conn << " Orphans since last started."); close(); }