From 0f8d722e384cddc94577e52c84ba0cdd9beaa5df Mon Sep 17 00:00:00 2001 From: Jay Date: Tue, 18 Dec 2018 17:17:51 +0800 Subject: [PATCH] fix line message bug --- module/message-command/message-command.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/module/message-command/message-command.go b/module/message-command/message-command.go index d6edb44..d89cbf7 100644 --- a/module/message-command/message-command.go +++ b/module/message-command/message-command.go @@ -1,7 +1,6 @@ package msgcmd import ( - "log" "regexp" "strings" @@ -93,7 +92,6 @@ func parseResult(str string) interface{} { } } - log.Println("command result ::::: ", m) return m } @@ -115,6 +113,5 @@ func runCMD(txt, c string, s *lineobj.SourceObject) (res string) { res = strings.Replace(res, v[0], cmdRes, 1) } } - log.Println("run cmd ::::: ", res) return }