From: Amos Jeffries Date: Tue, 3 Nov 2015 14:44:38 +0000 (-0800) Subject: Make FATAL messages have a consistent prefix X-Git-Tag: SQUID_3_5_12~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bf0afcd899daa03b2e2b4fb839d1bf7f8827ebe;p=thirdparty%2Fsquid.git Make FATAL messages have a consistent prefix --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index a4aaedd0ae..5b6ca10004 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -4022,7 +4022,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;