]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
debug change
authorwessels <>
Thu, 20 Feb 1997 00:09:16 +0000 (00:09 +0000)
committerwessels <>
Thu, 20 Feb 1997 00:09:16 +0000 (00:09 +0000)
src/net_db.cc
src/store.cc

index 19989c87784bcb6c5827deed146eb592e9256f3d..8f29388204d0ab7c98a7e8125e19e90224921272 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.29 1996/12/13 22:26:37 wessels Exp $
+ * $Id: net_db.cc,v 1.30 1997/02/19 17:09:16 wessels Exp $
  *
  * DEBUG: section 37    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -369,7 +369,8 @@ netdbDump(StoreEntry * sentry)
     for (n = netdbGetFirst(addr_table); n; n = netdbGetNext(addr_table))
        *(list + i++) = n;
     if (i != meta_data.netdb_addrs)
-       debug(37, 0, "netdbDump: WARNING netdb_addrs count off, found %d, expected %d\n", i, meta_data.netdb_addrs);
+       debug(37, 0, "WARNING: netdb_addrs count off, found %d, expected %d\n",
+               i, meta_data.netdb_addrs);
     qsort((char *) list,
        i,
        sizeof(netdbEntry *),
index b04fb442bdc1d52f8f97f6140ca7dcf051b597e0..a6102402920518a13beed7159f155cb0bc577be1 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.209 1997/02/07 04:57:17 wessels Exp $
+ * $Id: store.cc,v 1.210 1997/02/19 17:09:23 wessels Exp $
  *
  * DEBUG: section 20    Storeage Manager
  * AUTHOR: Harvest Derived
@@ -344,7 +344,7 @@ destroy_StoreEntry(StoreEntry * e)
        meta_data.url_strings -= strlen(e->url);
        safe_free(e->url);
     } else {
-       debug(20, 3, "destroy_StoreEntry: WARNING Entry without URL string!\n");
+       debug(20, 3, "destroy_StoreEntry: WARNING: Entry without URL string!\n");
     }
     if (BIT_TEST(e->flag, KEY_URL))
        e->key = NULL;
@@ -1131,7 +1131,7 @@ storeSwapInHandle(int fd_notused, const char *buf, int len, int flag, StoreEntry
     debug(20, 5, "storeSwapInHandle: SwapIn complete: '%s' from %s.\n",
        e->url, storeSwapFullPath(e->swap_file_number, NULL));
     if (mem->e_current_len != e->object_len) {
-       debug(20, 0, "storeSwapInHandle: WARNING! Object size mismatch.\n");
+       debug(20, 0, "storeSwapInHandle: WARNING: Object size mismatch.\n");
        debug(20, 0, "  --> '%s'\n", e->url);
        debug(20, 0, "  --> Expecting %d bytes from file: %s\n", e->object_len,
            storeSwapFullPath(e->swap_file_number, NULL));
@@ -2008,7 +2008,7 @@ storeGetSwapSpace(int size)
     if ((store_swap_size + kb_size > store_swap_high)) {
        i = 2;
        if (++swap_help > SWAP_MAX_HELP) {
-           debug(20, 0, "WARNING! Repeated failures to free up disk space!\n");
+           debug(20, 0, "WARNING: Repeated failures to free up disk space!\n");
            i = 0;
        }
        debug(20, i, "storeGetSwapSpace: Disk usage is over high water mark\n");