From 281488a72924c6c28f8c7a0b534a4e030766a70f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20S=C3=B8borg?= <55689628+nis-spiir@users.noreply.github.com> Date: Tue, 1 Sep 2020 10:17:25 +0200 Subject: [PATCH] Change loglevel for "Maximum number of connections reached" I was hit by this, and did not see anything in the log, connections was just hanging. Think warning is a better log level --- src/child.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/child.c b/src/child.c index 9ebba02..15d4fe8 100644 --- a/src/child.c +++ b/src/child.c @@ -100,7 +100,7 @@ void child_main_loop (void) if (sblist_getsize(childs) >= config->maxclients) { if (!was_full) - log_message (LOG_NOTICE, + log_message (LOG_WARNING, "Maximum number of connections reached. " "Refusing new connections."); was_full = 1;