Skip to content

Commit

Permalink
log::debug! message for JSON-RPC response (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascjones authored Jan 28, 2022
1 parent eb266b9 commit 79b5661
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ impl RpcClient {
RpcClient::WebSocket(inner) => inner.request(method, params).await,
RpcClient::Http(inner) => inner.request(method, params).await,
};
log::debug!("response: {:?}", data);
data
}

Expand Down

0 comments on commit 79b5661

Please sign in to comment.