improved log output

This commit is contained in:
Bernhard B
2021-09-29 09:57:04 +02:00
parent fdff7bac99
commit c1e514b29c

View File

@@ -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 {