We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 430fc69 commit 88561dcCopy full SHA for 88561dc
rust/simple_electrum_client/src/electrum/response.rs
@@ -78,6 +78,7 @@ pub fn parse_str_response(
78
raw: &str,
79
index: &HashMap<usize, Request>,
80
) -> Result<Vec<Response>, Error> {
81
+ log::debug!("parse_str_response() {}:{}", raw, raw.len());
82
// first we check if it's a batch
83
let batch = ResponseBatch::from_str(raw, index)?;
84
if let Some(b) = batch {
0 commit comments