diff --git a/protocol-testing/src/rpc.rs b/protocol-testing/src/rpc.rs index e387b43..b7ddeb9 100644 --- a/protocol-testing/src/rpc.rs +++ b/protocol-testing/src/rpc.rs @@ -130,6 +130,10 @@ impl RPCProvider { .client() .request("debug_traceCall", (transaction, BlockId::from(block_number), trace_options)) .await + .map_err(|e| { + tracing::error!("debug_traceCall RPC error: {:#}", e); + e + }) .into_diagnostic() .wrap_err("Failed to debug trace call many")?;