From: Amos Jeffries Date: Fri, 10 Apr 2009 07:29:56 +0000 (+1200) Subject: Promote byte-units parse message to a full warning message. X-Git-Tag: SQUID_3_0_STABLE14~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3aad2219c2e651a4ce521a92ce56baf290de0017;p=thirdparty%2Fsquid.git Promote byte-units parse message to a full warning message. This is very important to the parser and some configuration settings. --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 5f7185ab71..04a085ff54 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -873,7 +873,7 @@ parseBytesUnits(const char *unit) if (!strncasecmp(unit, B_GBYTES_STR, strlen(B_GBYTES_STR))) return 1 << 30; - debugs(3, 1, "parseBytesUnits: unknown bytes unit '" << unit << "'"); + debugs(3, DBG_CRITICAL, "WARNING: Unknown bytes unit '" << unit << "'"); return 0; }