]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Make FATAL messages have a consistent prefix
authorAmos Jeffries <squid3@treenet.co.nz>
Tue, 3 Nov 2015 14:42:13 +0000 (06:42 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 3 Nov 2015 14:42:13 +0000 (06:42 -0800)
src/cache_cf.cc

index 7b4c04fd31674dae7148818f55741e0a275af761..85d7feec4083e0334ed10b24cca5ba2f38d2f150 100644 (file)
@@ -3842,7 +3842,7 @@ requirePathnameExists(const char *name, const char *path)
     }
 
     if (stat(path, &sb) < 0) {
-        debugs(0, DBG_CRITICAL, (opt_parse_cfg_only?"FATAL ":"") << "ERROR: " << name << " " << path << ": " << xstrerror());
+        debugs(0, DBG_CRITICAL, (opt_parse_cfg_only?"FATAL: ":"ERROR: ") << name << " " << path << ": " << xstrerror());
         // keep going to find more issues if we are only checking the config file with "-k parse"
         if (opt_parse_cfg_only)
             return;