From 5ea547c077a03a402605d747d3577a414a8dbbc4 Mon Sep 17 00:00:00 2001 From: yo Date: Sat, 6 Feb 2021 13:04:38 +0100 Subject: [PATCH] Bugfix --- mxrouter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxrouter.go b/mxrouter.go index 9153565..932c4e6 100644 --- a/mxrouter.go +++ b/mxrouter.go @@ -92,7 +92,7 @@ func handleConnection(connClt net.Conn, conLdap *ldap.Conn) { if err != nil { // Dont notice if client closed connection if err.Error() != "EOF" { - logstream.Err("Error reading:", err.Error()) + logstream.Err(fmt.Sprintln("Error reading connection :", err.Error())) } return }