replaced info log with debug log

This commit is contained in:
Bernhard B
2021-09-14 18:21:06 +02:00
parent 760883bdca
commit 444e7d7608

View File

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