From f682ae6695e91274464ed7645449e337fd37465a Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 24 May 2020 17:01:26 +0200 Subject: [PATCH] emit debug message --- src/imap/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/imap/mod.rs b/src/imap/mod.rs index d0e98cb36..d0c0c21f7 100644 --- a/src/imap/mod.rs +++ b/src/imap/mod.rs @@ -591,6 +591,8 @@ impl Imap { // fetch messages with larger UID than the last one seen // `(UID FETCH lastseenuid+1:*)`, see RFC 4549 let set = format!("{}:*", last_seen_uid + 1); + + info!(context, "fetch_new_messages {:?}", set); let mut list = match session.uid_fetch(set, PREFETCH_FLAGS).await { Ok(list) => list, Err(err) => {