summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-02-21 17:14:57 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-02-21 17:14:57 +0100
commite0809324c810bcfc7ce9edc3da8c5ce953163447 (patch)
tree6a240c2b32445fff62282fdf2de2ac4ce1d9fcef
parente1dd7b95f0a29e56ca251052688657df6d8221ea (diff)
fixup! Add more trace output
-rw-r--r--lib/domain/libimagmail/src/mailtree.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/domain/libimagmail/src/mailtree.rs b/lib/domain/libimagmail/src/mailtree.rs
index 76aa1422..13ef1209 100644
--- a/lib/domain/libimagmail/src/mailtree.rs
+++ b/lib/domain/libimagmail/src/mailtree.rs
@@ -60,9 +60,9 @@ fn fill_arena_with<'a>(arena: &mut Arena<String>, store: &'a MailStoreWithConnec
let root_thread_id = root.get_thread_id().to_owned();
drop(root);
- trace!("root_id = {:?}", root_id);
- trace!("root_node = {:?}", root_node);
- trace!("root_thread = {:?}", root_thread);
+ trace!("root_id = {:?}", root_id);
+ trace!("root_node = {:?}", root_node);
+ trace!("root_thread_id = {:?}", root_thread_id);
store.connection().execute(|db| {
let q = format!("thread:{}", root_thread_id);