summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorGravatar default2023-02-10 13:53:12 +0100
committerGravatar default2023-02-10 13:53:12 +0100
commit381129fb2528ae7eb0cef9efda4a462126f6bab0 (patch)
tree06b3af4b801dbcae422225bcb8f63d57004c5050 /httpd.c
parentShow (dbglevel 1) the number of file descriptors available. (diff)
downloadsnac2-381129fb2528ae7eb0cef9efda4a462126f6bab0.tar.gz
snac2-381129fb2528ae7eb0cef9efda4a462126f6bab0.tar.xz
snac2-381129fb2528ae7eb0cef9efda4a462126f6bab0.zip
Move the #fds log line to dbglevel 0.
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index 20177e6..1208e84 100644
--- a/httpd.c
+++ b/httpd.c
@@ -422,7 +422,7 @@ void httpd(void)
422 /* show the number of usable file descriptors */ 422 /* show the number of usable file descriptors */
423 struct rlimit r; 423 struct rlimit r;
424 getrlimit(RLIMIT_NOFILE, &r); 424 getrlimit(RLIMIT_NOFILE, &r);
425 srv_debug(1, xs_fmt("available (rlimit) fds: %d (cur) / %d (max)", 425 srv_debug(0, xs_fmt("available (rlimit) fds: %d (cur) / %d (max)",
426 (int) r.rlim_cur, (int) r.rlim_max)); 426 (int) r.rlim_cur, (int) r.rlim_max));
427 427
428 /* initialize the job control engine */ 428 /* initialize the job control engine */