From 6d2d31928db20cb4d8d8cf6b99bf45bfa3e35cd1 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Thu, 11 Jun 2020 14:01:45 +0200 Subject: [PATCH] Warn about the correct folder --- src/scheduler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scheduler.rs b/src/scheduler.rs index f6cb8f6da..295d4984d 100644 --- a/src/scheduler.rs +++ b/src/scheduler.rs @@ -149,7 +149,7 @@ async fn fetch_idle(ctx: &Context, connection: &mut Imap, folder: Config) -> Int } } None => { - warn!(ctx, "Can not watch inbox folder, not set"); + warn!(ctx, "Can not watch {} folder, not set", folder); connection.fake_idle(&ctx, None).await } }