From 4c54515b7999f870999cce68b4239875ccbf7516 Mon Sep 17 00:00:00 2001 From: daladim Date: Wed, 29 Sep 2021 08:38:27 +0200 Subject: [PATCH] More logs --- src/provider.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/provider.rs b/src/provider.rs index aad647e..d52e411 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -106,7 +106,7 @@ where } async fn run_sync(&mut self, result: &mut SyncResult) -> Result<(), Box> { - result.info("Starting a sync."); + result.info("Starting a sync"); let mut handled_calendars = HashSet::new(); @@ -149,6 +149,8 @@ where } } + result.info("Sync ended"); + Ok(()) }