]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
lower debug levels on file_close to track delayed closes
authorwessels <>
Wed, 4 Mar 1998 05:54:40 +0000 (05:54 +0000)
committerwessels <>
Wed, 4 Mar 1998 05:54:40 +0000 (05:54 +0000)
src/disk.cc

index 03904ca385d95a349e91342436e3076ff6a4a99f..20da6e0622d2d6afd1feb3392c96e19f6fae6bbb 100644 (file)
@@ -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);
 }