feat: Print completed date & time after each instance sync

json-serializing-nullable-fields-issue
Robert Dailey 9 months ago
parent fb128f90bc
commit aaf810fd68

@ -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

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

Loading…
Cancel
Save