From: Amos Jeffries Date: Tue, 3 Nov 2015 14:42:13 +0000 (-0800) Subject: Make FATAL messages have a consistent prefix X-Git-Tag: SQUID_4_0_3~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe89b8bbb2c0d467448d07bf02d30419e4ec48ea;p=thirdparty%2Fsquid.git Make FATAL messages have a consistent prefix --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 7b4c04fd31..85d7feec40 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -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;