From 3230cee7863f56af454198be5a9152d4e51759ae Mon Sep 17 00:00:00 2001 From: Vasile Popescu Date: Tue, 3 Nov 2020 13:59:55 +0100 Subject: [PATCH] Fix some misleading log messages --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index 53248f3..e2dafc2 100644 --- a/main.go +++ b/main.go @@ -181,7 +181,6 @@ Flags: go func() { _, err := io.Copy(mw, ptyMaster) if err != nil { - log.Error("Lost connection with the server.\n") ptyMaster.Stop() } }() @@ -191,6 +190,6 @@ Flags: }() ptyMaster.Wait() - fmt.Printf("tty-share finished\n\n") + fmt.Printf("tty-share finished\n\n\r") server.Stop() }