]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Promote byte-units parse message to a full warning message.
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 28 Feb 2009 08:50:18 +0000 (21:50 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 28 Feb 2009 08:50:18 +0000 (21:50 +1300)
This is very important to the parser and some configuration settings.

src/cache_cf.cc

index 66cd44d480baa8edca6f05cc6075deb2e36acec1..b19bf1b10ff2b262e4edddfedcd7e44c40ea4803 100644 (file)
@@ -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;
 }