]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DBG_IMPORTANT instead of DBG_WARNING
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 May 2011 01:49:35 +0000 (13:49 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 May 2011 01:49:35 +0000 (13:49 +1200)
src/cache_cf.cc

index 7796b1527387f3f9374bb35e5e57de4ccf73448b..0722bd476e512fa93fd179fc30cdea8866498abb 100644 (file)
@@ -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