From: Amos Jeffries Date: Mon, 19 Jun 2017 10:09:28 +0000 (+1200) Subject: Add missing ERROR label on cache_peer_access misconfiguration messages X-Git-Tag: SQUID_4_0_21~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96dd773c9e734c556b6aed207051d763a1471bf1;p=thirdparty%2Fsquid.git Add missing ERROR label on cache_peer_access misconfiguration messages --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 29dac34c5b..4194906bbe 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -2403,7 +2403,7 @@ parse_peer_access(void) CachePeer *p = peerFindByName(host); if (!p) { - debugs(15, DBG_CRITICAL, "" << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'"); + debugs(15, DBG_CRITICAL, "ERROR: " << cfg_filename << ", line " << config_lineno << ": No cache_peer '" << host << "'"); return; }