From: wessels <> Date: Wed, 4 Mar 1998 05:54:40 +0000 (+0000) Subject: lower debug levels on file_close to track delayed closes X-Git-Tag: SQUID_3_0_PRE1~3940 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f090b2045747674a1c7047f5056d27f4bf743f21;p=thirdparty%2Fsquid.git lower debug levels on file_close to track delayed closes --- diff --git a/src/disk.cc b/src/disk.cc index 03904ca385..20da6e0622 100644 --- a/src/disk.cc +++ b/src/disk.cc @@ -1,6 +1,6 @@ /* - * $Id: disk.cc,v 1.108 1998/02/24 21:13:43 wessels Exp $ + * $Id: disk.cc,v 1.109 1998/03/03 22:54:40 wessels Exp $ * * DEBUG: section 6 Disk I/O Routines * AUTHOR: Harvest Derived @@ -212,7 +212,7 @@ file_close(int fd) assert(F->open); if (EBIT_TEST(F->flags, FD_WRITE_DAEMON)) { EBIT_SET(F->flags, FD_CLOSE_REQUEST); - debug(6, 5) ("file_close: FD %d, delaying close\n"); + debug(6, 2) ("file_close: FD %d, delaying close\n"); return; } #if USE_ASYNC_IO @@ -220,7 +220,7 @@ file_close(int fd) #else close(fd); #endif - debug(6, 5) ("file_close: FD %d, really closing\n", fd); + debug(6, 2) ("file_close: FD %d, really closing\n", fd); fd_close(fd); }