From c1e514b29cdfe6bae7c13a661366a2f5d4123712 Mon Sep 17 00:00:00 2001 From: Bernhard B Date: Wed, 29 Sep 2021 09:57:04 +0200 Subject: [PATCH] improved log output --- 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 c1345e3..f83f93b 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.Debug("full command ", string(fullCommandBytes)) + log.Debug("full command: ", string(fullCommandBytes)) _, err = r.conn.Write([]byte(string(fullCommandBytes) + "\n")) if err != nil {