]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
debug
authorwessels <>
Wed, 2 Sep 1998 23:21:00 +0000 (23:21 +0000)
committerwessels <>
Wed, 2 Sep 1998 23:21:00 +0000 (23:21 +0000)
src/cache_manager.cc

index 7a6b76c76b1294316a88137472238a58c3504127..511bbccd596f579b988042769efc38029cd6f9f5 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cache_manager.cc,v 1.17 1998/07/22 20:37:02 wessels Exp $
+ * $Id: cache_manager.cc,v 1.18 1998/09/02 17:21:00 wessels Exp $
  *
  * DEBUG: section 16    Cache Manager Objects
  * AUTHOR: Duane Wessels
@@ -112,12 +112,12 @@ cachemgrParseUrl(const char *url)
     if (t < 2) {
        xstrncpy(request, "menu", MAX_URL);
     } else if ((a = cachemgrFindAction(request)) == NULL) {
-       debug(16, 0) ("cachemgrParseUrl: action '%s' not found\n", request);
+       debug(16, 1) ("cachemgrParseUrl: action '%s' not found\n", request);
        return NULL;
     } else {
        prot = cachemgrActionProtection(a);
        if (!strcmp(prot, "disabled") || !strcmp(prot, "hidden")) {
-           debug(16, 0) ("cachemgrParseUrl: action '%s' is %s\n", request, prot);
+           debug(16, 1) ("cachemgrParseUrl: action '%s' is %s\n", request, prot);
            return NULL;
        }
     }