From: wessels <> Date: Wed, 2 Sep 1998 23:21:00 +0000 (+0000) Subject: debug X-Git-Tag: SQUID_3_0_PRE1~2769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea98a750a55f2092b69cf8a8d96565dd817bb6f2;p=thirdparty%2Fsquid.git debug --- diff --git a/src/cache_manager.cc b/src/cache_manager.cc index 7a6b76c76b..511bbccd59 100644 --- a/src/cache_manager.cc +++ b/src/cache_manager.cc @@ -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; } }