From: Amos Jeffries Date: Mon, 23 May 2011 01:49:35 +0000 (+1200) Subject: DBG_IMPORTANT instead of DBG_WARNING X-Git-Tag: take07~16^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a9087af68879d147abbc4b5c5832b4fe4d8dae2;p=thirdparty%2Fsquid.git DBG_IMPORTANT instead of DBG_WARNING --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 7796b15273..0722bd476e 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -647,11 +647,11 @@ configDoConfigure(void) #if !HAVE_SETRLIMIT || !defined(RLIMIT_NOFILE) if (Config.max_filedescriptors > 0) { - debugs(0, DBG_WARNING, "WARNING: max_filedescriptors disabled. Operating System setrlimit(RLIMIT_NOFILE) is missing."); + debugs(0, DBG_IMPORTANT, "WARNING: max_filedescriptors disabled. Operating System setrlimit(RLIMIT_NOFILE) is missing."); } #elif USE_SELECT || USE_SELECT_WIN32 if (Config.max_filedescriptors > FD_SETSIZE) { - debugs(0, DBG_WARNING, "WARNING: max_filedescriptors limited to " << FD_SETSIZE << " by select() algorithm."); + debugs(0, DBG_IMPORTANT, "WARNING: max_filedescriptors limited to " << FD_SETSIZE << " by select() algorithm."); } #endif