]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
debug SECTION
authorwessels <>
Wed, 5 Aug 1998 14:19:56 +0000 (14:19 +0000)
committerwessels <>
Wed, 5 Aug 1998 14:19:56 +0000 (14:19 +0000)
src/store_rebuild.cc

index cd48c291449f1407932bbdeae5a525855c5a85e2..e4552965563c35865391ce0dd709d31d2a256024 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: store_rebuild.cc,v 1.44 1998/07/25 04:47:28 wessels Exp $
+ * $Id: store_rebuild.cc,v 1.45 1998/08/05 08:19:56 wessels Exp $
  *
  * DEBUG: section 20    Store Rebuild Routines
  * AUTHOR: Duane Wessels
@@ -605,20 +605,20 @@ storeCleanup(void *datanotused)
            struct stat sb;
            if (stat(storeSwapFullPath(e->swap_file_number, NULL), &sb) < 0) {
                store_errors++;
-               debug(0, 0) ("storeCleanup: MISSING SWAP FILE\n");
-               debug(0, 0) ("storeCleanup: FILENO %08X\n", e->swap_file_number);
-               debug(0, 0) ("storeCleanup: PATH %s\n",
+               debug(20, 0) ("storeCleanup: MISSING SWAP FILE\n");
+               debug(20, 0) ("storeCleanup: FILENO %08X\n", e->swap_file_number);
+               debug(20, 0) ("storeCleanup: PATH %s\n",
                    storeSwapFullPath(e->swap_file_number, NULL));
                storeEntryDump(e, 0);
                continue;
            }
            if (e->swap_file_sz != sb.st_size) {
                store_errors++;
-               debug(0, 0) ("storeCleanup: SIZE MISMATCH\n");
-               debug(0, 0) ("storeCleanup: FILENO %08X\n", e->swap_file_number);
-               debug(0, 0) ("storeCleanup: PATH %s\n",
+               debug(20, 0) ("storeCleanup: SIZE MISMATCH\n");
+               debug(20, 0) ("storeCleanup: FILENO %08X\n", e->swap_file_number);
+               debug(20, 0) ("storeCleanup: PATH %s\n",
                    storeSwapFullPath(e->swap_file_number, NULL));
-               debug(0, 0) ("storeCleanup: ENTRY SIZE: %d, FILE SIZE: %d\n",
+               debug(20, 0) ("storeCleanup: ENTRY SIZE: %d, FILE SIZE: %d\n",
                    e->swap_file_sz, (int) sb.st_size);
                storeEntryDump(e, 0);
                continue;