summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNicolai Søborg <55689628+nis-spiir@users.noreply.github.com>2020-09-01 10:17:25 +0200
committerrofl0r <rofl0r@users.noreply.github.com>2020-09-01 15:07:03 +0100
commit281488a72924c6c28f8c7a0b534a4e030766a70f (patch)
treea6217d63de2c09620c109b9ed058215eadc43060 /src
parentf825bea4c1141cd7b0cb8407d81273854be25a88 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/child.c2
1 files changed, 1 insertions, 1 deletions
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;