From: Amos Jeffries Date: Sat, 28 Feb 2009 08:50:18 +0000 (+1300) Subject: Promote byte-units parse message to a full warning message. X-Git-Tag: SQUID_3_2_0_1~1152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fa37412f3298b2853060cb2fc21d2fcf321f2b81;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 66cd44d480..b19bf1b10f 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -888,7 +888,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; }