From: Amos Jeffries Date: Tue, 6 Jun 2017 13:36:49 +0000 (+1200) Subject: Add missing ERROR label on cache_peer_access misconfiguration messages X-Git-Tag: M-staged-PR71~141 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffc36228e93309022881138f83ee757f4d122f6a;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 f983910137..5090098668 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -2468,7 +2468,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; }