From 2563c3995ca0ce0d0735f07fa523d41c06b2d335 Mon Sep 17 00:00:00 2001 From: draoi Date: Mon, 29 Jan 2024 11:31:11 +0100 Subject: [PATCH] acceptor: upgrade "reached incoming connection limit" to a warning --- src/net/acceptor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/acceptor.rs b/src/net/acceptor.rs index 2d30c29fa..bd8d2b6cd 100644 --- a/src/net/acceptor.rs +++ b/src/net/acceptor.rs @@ -107,7 +107,7 @@ impl Acceptor { // These channels are the channels spawned below on listener.next().is_ok(). // After the notification, we reset the condvar and retry this loop to see // if we can accept more connections, and if not - we'll be back here. - debug!(target: "net::acceptor::run_accept_loop()", "Reached incoming conn limit, waiting..."); + warn!(target: "net::acceptor::run_accept_loop()", "Reached incoming conn limit, waiting..."); cv.wait().await; cv.reset(); continue