From: Amos Jeffries Date: Fri, 1 Mar 2013 11:05:08 +0000 (-0700) Subject: Bug 3329: Quieten orphan Comm::Connection messages X-Git-Tag: SQUID_3_2_8~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=427dd3b40b4d05cb7ea5c975a2b3a82b59f040f5;p=thirdparty%2Fsquid.git Bug 3329: Quieten orphan Comm::Connection messages The cases which were earlier causing a lot of RAM 'leaks' have been resolved already and the remaining causes appear to all be in components with short packet handling pathways where the orphan is not wasting much in the way of RAM bytes or FD time. The trace is left at level-4 for future debugging if necessary. --- diff --git a/src/comm/Connection.cc b/src/comm/Connection.cc index 88c9aa758a..82b56cae1c 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, DBG_CRITICAL, "BUG #3329: Orphan Comm::Connection: " << *this); - debugs(5, DBG_CRITICAL, "NOTE: " << ++lost_conn << " Orphans since last started."); + debugs(5, 4, "BUG #3329: Orphan Comm::Connection: " << *this); + debugs(5, 4, "NOTE: " << ++lost_conn << " Orphans since last started."); close(); }