]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Promote byte-units parse message to a full warning message.
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 10 Apr 2009 07:29:56 +0000 (19:29 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 10 Apr 2009 07:29:56 +0000 (19:29 +1200)
This is very important to the parser and some configuration settings.

src/cache_cf.cc

index 5f7185ab71e9dd9ca8d03456631d2c763ec82cf4..04a085ff54f86bfbb5a2194af2d4ebb12874f118 100644 (file)
@@ -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;
 }