From: Alex Rousskov Date: Sun, 3 Apr 2011 11:23:21 +0000 (-0600) Subject: Report eCAP service [re]start to cache.log by default. X-Git-Tag: SQUID_3_1_12~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bde03ea5917f9f0557fc7d0ecbea1ee8f771c880;p=thirdparty%2Fsquid.git Report eCAP service [re]start to cache.log by default. Reporting eCAP services may be important, especially since we have no other interface to detect their presence and since folks will have to deal with rogue services eventually. Also raised eCAP service configuration notice level to 2. --- diff --git a/src/adaptation/ecap/ServiceRep.cc b/src/adaptation/ecap/ServiceRep.cc index 6bac7b18fc..eec111f238 100644 --- a/src/adaptation/ecap/ServiceRep.cc +++ b/src/adaptation/ecap/ServiceRep.cc @@ -32,11 +32,10 @@ Adaptation::Ecap::ServiceRep::finalize() Adaptation::Service::finalize(); theService = FindAdapterService(cfg().uri); if (theService) { - debugs(93,3, HERE << "starting eCAP service: " << theService->uri()); + debugs(93,DBG_IMPORTANT, "Starting eCAP service: " << theService->uri()); theService->start(); } else { - debugs(93,1, "Warning: configured ecap_service was not loaded: " << - cfg().uri); + debugs(93,DBG_IMPORTANT, "WARNING: configured ecap_service was not loaded: " << cfg().uri); } }