diff --git a/src/bin/drk2.rs b/src/bin/drk2.rs index afdfe4032..7c3e13033 100644 --- a/src/bin/drk2.rs +++ b/src/bin/drk2.rs @@ -23,6 +23,7 @@ impl Drk { async fn request(&self, r: jsonrpc::JsonRequest) -> Result { let reply: JsonResult; + debug!(target: "DRK", "--> {:#?}", serde_json::to_string(&r)?); match jsonrpc::send_request(self.url.clone(), json!(r)).await { Ok(v) => reply = v, Err(e) => return Err(e),