emit debug message

This commit is contained in:
holger krekel
2020-05-24 17:01:26 +02:00
parent a4971b5fcb
commit f682ae6695

View File

@@ -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) => {