From: Amos Jeffries Date: Mon, 20 Dec 2010 05:39:01 +0000 (-0700) Subject: eCAP: cache.log polish X-Git-Tag: SQUID_3_1_10~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb4697c20421cb7ef3592dfc537284d35b7f742f;p=thirdparty%2Fsquid.git eCAP: cache.log polish --- diff --git a/src/LoadableModules.cc b/src/LoadableModules.cc index 8a40c11f91..e4dc3e1997 100644 --- a/src/LoadableModules.cc +++ b/src/LoadableModules.cc @@ -6,11 +6,11 @@ static void LoadModule(const char *fname) { - debugs(1, 1, "loading Squid module from '" << fname << "'"); + debugs(1, 1, "Loading Squid module from '" << fname << "'"); LoadableModule *m = new LoadableModule(fname); m->load(); - debugs(1, 2, "loaded Squid module from '" << fname << "'"); + debugs(1, 2, "Loaded Squid module from '" << fname << "'"); //TODO: TheModules.push_back(m); } @@ -21,5 +21,5 @@ LoadableModulesConfigure(const wordlist *names) int count = 0; for (const wordlist *i = names; i; i = i->next, ++count) LoadModule(i->key); - debugs(1, 1, "Squid modules loaded: " << count); + debugs(1, 1, "Squid plugin modules loaded: " << count); }