]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 3329: Polish: reference bugzilla record in cache.log to prevent duplicates
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 26 Nov 2012 08:30:30 +0000 (01:30 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 26 Nov 2012 08:30:30 +0000 (01:30 -0700)
src/comm/Connection.cc

index 222da0b6ec875cc1c43adf57b49a5d043af440a4..88c9aa758a83de8919a3800e230e85e8ca9d5743 100644 (file)
@@ -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();
     }