From 962645a09644b6f372dbb4ff55e3363ca6e729ca Mon Sep 17 00:00:00 2001 From: MTRNord Date: Fri, 28 Jul 2023 23:07:27 +0200 Subject: [PATCH] Reduce logging on fetch --- crates/erooster_imap/src/commands/fetch.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/erooster_imap/src/commands/fetch.rs b/crates/erooster_imap/src/commands/fetch.rs index 7d32083e..15b20814 100644 --- a/crates/erooster_imap/src/commands/fetch.rs +++ b/crates/erooster_imap/src/commands/fetch.rs @@ -208,7 +208,6 @@ fn generate_response_for_attributes( } } FetchAttributes::Flags => { - warn!("Flags contained are: {}", mail.flags()); let mut flags = String::new(); if mail .path() @@ -256,7 +255,6 @@ fn generate_response_for_attributes( flags.push_str(" \\Deleted"); } } - warn!("Flags sent are: {flags}"); Ok(Some(format!("FLAGS ({flags})"))) }