From 8fe026cad37e81fbcd07c3a6cf6a4c74aef0845a Mon Sep 17 00:00:00 2001 From: famfo Date: Mon, 5 Jan 2026 22:34:37 +0100 Subject: [PATCH] tokio-xmpp: raise log level of IQ tracker --- tokio-xmpp/src/client/iq.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tokio-xmpp/src/client/iq.rs b/tokio-xmpp/src/client/iq.rs index 9de562e9..68c437f9 100644 --- a/tokio-xmpp/src/client/iq.rs +++ b/tokio-xmpp/src/client/iq.rs @@ -306,10 +306,12 @@ impl IqResponseTracker { let mut map = self.map.lock().unwrap(); match map.remove(&key) { None => { - log::trace!("not handling IQ response from {:?} with id {:?}: no active tracker for this tuple", key.0, key.1); + log::debug!("not handling IQ response from {:?} with id {:?}: no active tracker for this tuple", key.0, key.1); + log::trace!("active trackers: {map:?}"); ControlFlow::Continue(payload.into_iq(key.0, to, key.1)) } Some(sink) => { + log::trace!("completing IQ {:?}", key.0); sink.complete(payload); ControlFlow::Break(()) }