commit 381129fb2528ae7eb0cef9efda4a462126f6bab0
parent 5f89816bb42b4cc66d87ae419803f0a081b0108c
Author: default <nobody@localhost>
Date: Fri, 10 Feb 2023 13:53:12 +0100
Move the #fds log line to dbglevel 0.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/httpd.c b/httpd.c
@@ -422,7 +422,7 @@ void httpd(void)
/* show the number of usable file descriptors */
struct rlimit r;
getrlimit(RLIMIT_NOFILE, &r);
- srv_debug(1, xs_fmt("available (rlimit) fds: %d (cur) / %d (max)",
+ srv_debug(0, xs_fmt("available (rlimit) fds: %d (cur) / %d (max)",
(int) r.rlim_cur, (int) r.rlim_max));
/* initialize the job control engine */