Skip to content

Commit

Permalink
Reduce logging on fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Jul 28, 2023
1 parent bbdf824 commit 962645a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/erooster_imap/src/commands/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -256,7 +255,6 @@ fn generate_response_for_attributes(
flags.push_str(" \\Deleted");
}
}
warn!("Flags sent are: {flags}");

Ok(Some(format!("FLAGS ({flags})")))
}
Expand Down

0 comments on commit 962645a

Please sign in to comment.