diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2020-02-21 17:47:48 +0100 |
---|---|---|
committer | Matthias Beyer <mail@beyermatthias.de> | 2020-02-22 10:41:04 +0100 |
commit | 3229bd9750ffd94702f801c887961f79666294c8 (patch) | |
tree | ef1e9c76697d40f24b7040b11d9b617a8e9bede8 | |
parent | a5fa43e0b8c6458b27255826e291604acd503557 (diff) |
fixup! fixup! Add more trace output
-rw-r--r-- | bin/domain/imag-mail/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/domain/imag-mail/src/lib.rs b/bin/domain/imag-mail/src/lib.rs index cb5ea299..db5f2926 100644 --- a/bin/domain/imag-mail/src/lib.rs +++ b/bin/domain/imag-mail/src/lib.rs @@ -229,7 +229,6 @@ fn list(rt: &Runtime) -> Result<()> { // we have to collect here, so that all FLEs are drop()ed ids.into_iter() .map(|id: String| mailstore.get_mailtree(&id)) - .inspect(|mt| trace!("Printing mailtree: {:?}", mt)) .and_then_ok(|mt| print_traverse(&mailstore, mt, i, conn, list_format, rt, out)) .collect::<Result<Vec<_>>>() .map(|_| ()) |