Skip to content

Commit 3573f6a

Browse files
author
Bernhard B
committed
added json-rpc debug logging
see #482
1 parent efee49e commit 3573f6a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/client/jsonrpc2.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (r *JsonRpc2Client) getRaw(command string, account *string, args interface{
107107
}
108108
}
109109

110-
log.Debug("full command: ", string(fullCommandBytes))
110+
log.Debug("json-rpc command: ", string(fullCommandBytes))
111111

112112
_, err = r.conn.Write([]byte(string(fullCommandBytes) + "\n"))
113113
if err != nil {
@@ -118,12 +118,16 @@ func (r *JsonRpc2Client) getRaw(command string, account *string, args interface{
118118
r.receivedResponsesById[u.String()] = responseChan
119119

120120
var resp JsonRpc2MessageResponse
121-
resp = <-responseChan
122-
delete(r.receivedResponsesById, u.String())
121+
resp = <-responseChan
122+
delete(r.receivedResponsesById, u.String())
123123

124124
if resp.Err.Code != 0 {
125125
return "", errors.New(resp.Err.Message)
126126
}
127+
128+
log.Debug("json-rpc command response message: ", string(resp.Result))
129+
log.Debug("json-rpc response error: ", string(resp.Err.Message))
130+
127131
return string(resp.Result), nil
128132
}
129133

0 commit comments

Comments
 (0)