Move "Closing connection" message to Debug mode

This commit is contained in:
yo
2021-02-10 23:06:22 +01:00
parent 122f76c3f9
commit 17d41e4f61
+1 -1
View File
@@ -89,7 +89,7 @@ func handleConnection(connClt net.Conn, conLdap *ldap.Conn) {
// Close connection when this function ends // Close connection when this function ends
defer func() { defer func() {
logstream.Info("Closing connection") logstream.Debug("Closing connection")
connClt.Close() connClt.Close()
}() }()