From 7b06d497f4714c21197cf13b5f6197ef547966fe Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 11 Mar 2019 12:04:49 +0300 Subject: [PATCH] debug level for no incoming connections warning --- src/p2p/net_node.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index dc4436dd7..38d0d82be 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -1332,7 +1332,7 @@ namespace nodetool return true; if (get_incoming_connections_count() == 0) { - const el::Level level = el::Level::Warning; + const el::Level level = el::Level::Debug; MCLOG_RED(level, "global", "No incoming connections - check firewalls/routers allow port " << get_this_peer_port()); } return true;