------------------------------------------------------------ revno: 12385 revision-id: squid3@treenet.co.nz-20121118113200-qupelhb9dfz13qki parent: squid3@treenet.co.nz-20121118112141-f6aajidfaw7lmfh2 fixes bug(s): http://bugs.squid-cache.org/show_bug.cgi?id=3329 committer: Amos Jeffries branch nick: 3.3 timestamp: Sun 2012-11-18 04:32:00 -0700 message: Bug 3329: Polish: reference the bugzilla number in cache.log to prevent duplicates ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20121118113200-qupelhb9dfz13qki # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # testament_sha1: 3f9300b55802ae228a23fefa5a13e0fb213f152b # timestamp: 2012-11-18 11:39:10 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.3 # base_revision_id: squid3@treenet.co.nz-20121118112141-\ # f6aajidfaw7lmfh2 # # Begin patch === modified file 'src/comm/Connection.cc' --- src/comm/Connection.cc 2012-09-04 15:15:51 +0000 +++ src/comm/Connection.cc 2012-11-18 11:32:00 +0000 @@ -29,7 +29,7 @@ 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(); }