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.
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);
}
}