From 444e7d7608ecef6121993f72fd2a9d33048fcf67 Mon Sep 17 00:00:00 2001 From: Bernhard B Date: Tue, 14 Sep 2021 18:21:06 +0200 Subject: [PATCH] replaced info log with debug log --- src/client/jsonrpc2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/jsonrpc2.go b/src/client/jsonrpc2.go index acece11..c1345e3 100644 --- a/src/client/jsonrpc2.go +++ b/src/client/jsonrpc2.go @@ -72,7 +72,7 @@ func (r *JsonRpc2Client) getRaw(command string, args interface{}) (string, error return "", err } - log.Info("request = ", string(fullCommandBytes)) + log.Debug("full command ", string(fullCommandBytes)) _, err = r.conn.Write([]byte(string(fullCommandBytes) + "\n")) if err != nil {