From 2e66f848f6f0fc98c819e4518737ffa7aa7f0321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Fri, 20 Dec 2024 14:23:38 +0100 Subject: [PATCH] xmpp: Remove noisy info log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- xmpp/src/disco/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/xmpp/src/disco/mod.rs b/xmpp/src/disco/mod.rs index 87e20020b7ec76726380e7627f1623ca8ae237ff..28f69b94302c6365f46ebb292d2e7a154c80f349 100644 --- a/xmpp/src/disco/mod.rs +++ b/xmpp/src/disco/mod.rs @@ -26,7 +26,6 @@ pub async fn handle_disco_info_result(agent: &mut Agent, disco: DiscoInfoResult, // TODO: only send this when the JoinRooms feature is enabled. agent.awaiting_disco_bookmarks_type = false; let mut perform_bookmarks2 = false; - info!("{:#?}", disco.features); for feature in disco.features { if feature.var == "urn:xmpp:bookmarks:1#compat" { perform_bookmarks2 = true;