From fe89b8bbb2c0d467448d07bf02d30419e4ec48ea Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Tue, 3 Nov 2015 06:42:13 -0800 Subject: [PATCH] Make FATAL messages have a consistent prefix --- src/cache_cf.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3