diff --git a/CHANGELOG.md b/CHANGELOG.md index 385ca119..22837b02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Print date & time log at the end of each completed instance sync. + ## [5.3.1] - 2023-08-21 ### Fixed diff --git a/src/Recyclarr.Cli/Processors/Sync/SyncProcessor.cs b/src/Recyclarr.Cli/Processors/Sync/SyncProcessor.cs index 5aa7dd30..2316786a 100644 --- a/src/Recyclarr.Cli/Processors/Sync/SyncProcessor.cs +++ b/src/Recyclarr.Cli/Processors/Sync/SyncProcessor.cs @@ -67,6 +67,7 @@ public class SyncProcessor : ISyncProcessor PrintProcessingHeader(config.ServiceType, config); await _capabilityEnforcer.Check(config); await _pipelines.Process(settings, config); + _log.Information("Completed at {Date}", DateTime.Now); } catch (Exception e) {