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.
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();
}