]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
- change file_map_create debug level
authorwessels <>
Fri, 16 May 1997 13:44:32 +0000 (13:44 +0000)
committerwessels <>
Fri, 16 May 1997 13:44:32 +0000 (13:44 +0000)
src/filemap.cc

index 575d207b77fad814d53b29a792e7a7962669df54..7fcb569889c0b38b757d55990b3122e18d892ff0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: filemap.cc,v 1.16 1997/03/29 04:45:15 wessels Exp $
+ * $Id: filemap.cc,v 1.17 1997/05/16 07:44:32 wessels Exp $
  *
  * DEBUG: section 8     Swap File Bitmap
  * AUTHOR: Harvest Derived
@@ -130,7 +130,7 @@ file_map_create(int n)
     fileMap *fm = xcalloc(1, sizeof(fileMap));
     fm->max_n_files = n;
     fm->nwords = n >> LONG_BIT_SHIFT;
-    debug(8, 1, "file_map_create: creating space for %d files\n", n);
+    debug(8, 3, "file_map_create: creating space for %d files\n", n);
     debug(8, 5, "--> %d words of %d bytes each\n",
        fm->nwords, sizeof(unsigned long));
     fm->file_map = xcalloc(fm->nwords, sizeof(unsigned long));