From: Amos Jeffries Date: Wed, 24 Feb 2010 06:06:54 +0000 (+1300) Subject: Bug 2616: reduce IdleConnList::removeFD messages X-Git-Tag: SQUID_3_2_0_1~411 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65e8942f07906b1c3533f82785ebe16d0739439c;p=thirdparty%2Fsquid.git Bug 2616: reduce IdleConnList::removeFD messages --- diff --git a/src/pconn.cc b/src/pconn.cc index fd2d97b5a2..571d798699 100644 --- a/src/pconn.cc +++ b/src/pconn.cc @@ -86,7 +86,7 @@ IdleConnList::removeFD(int fd) { int index = findFDIndex(fd); if (index < 0) { - debugs(48, 0, "IdleConnList::removeFD: FD " << fd << " NOT FOUND!"); + debugs(48, 2, "IdleConnList::removeFD: FD " << fd << " NOT FOUND!"); return; } debugs(48, 3, "IdleConnList::removeFD: found FD " << fd << " at index " << index);