From 558519f048ff8c45881192f984684830e0b817f5 Mon Sep 17 00:00:00 2001 From: yo Date: Wed, 10 Feb 2021 22:01:53 +0100 Subject: [PATCH] Move "Closing connection" message to Debug mode --- mxrouter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxrouter.go b/mxrouter.go index bbb53ff..6febc49 100644 --- a/mxrouter.go +++ b/mxrouter.go @@ -89,7 +89,7 @@ func handleConnection(connClt net.Conn, conLdap *ldap.Conn) { // Close connection when this function ends defer func() { - logstream.Info("Closing connection") + logstream.Debug("Closing connection") connClt.Close() }()