From d984c795850c0ae65b067bc0ebd1300d90e8744e Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Tue, 8 Apr 2025 18:44:51 +0200 Subject: [PATCH] changing log levels Signed-off-by: Csaba Kiraly --- p2p/nat/natupnp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p2p/nat/natupnp.go b/p2p/nat/natupnp.go index 0080e3fc4d..d79677db55 100644 --- a/p2p/nat/natupnp.go +++ b/p2p/nat/natupnp.go @@ -114,7 +114,7 @@ func (n *upnp) addAnyPortMapping(protocol string, extport, intport int, ip net.I if err == nil { return uint16(extport), nil } - log.Trace("Failed to add port mapping", "protocol", protocol, "extport", extport, "intport", intport, "err", err) + log.Debug("Failed to add port mapping", "protocol", protocol, "extport", extport, "intport", intport, "err", err) } // If above fails, we retry with a random port. @@ -128,7 +128,7 @@ func (n *upnp) addAnyPortMapping(protocol string, extport, intport int, ip net.I if err == nil { return uint16(extport), nil } - log.Trace("Failed to add random port mapping", "protocol", protocol, "extport", extport, "intport", intport, "err", err) + log.Debug("Failed to add random port mapping", "protocol", protocol, "extport", extport, "intport", intport, "err", err) } return 0, err }