diff --git a/src/rpc.rs b/src/rpc.rs index ebe2ad0741..e5e2d20620 100644 --- a/src/rpc.rs +++ b/src/rpc.rs @@ -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 }