feat: Print completed date & time after each instance sync

json-serializing-nullable-fields-issue
Robert Dailey 1 year ago
parent fb128f90bc
commit aaf810fd68

@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Added
- Print date & time log at the end of each completed instance sync.
## [5.3.1] - 2023-08-21 ## [5.3.1] - 2023-08-21
### Fixed ### Fixed

@ -67,6 +67,7 @@ public class SyncProcessor : ISyncProcessor
PrintProcessingHeader(config.ServiceType, config); PrintProcessingHeader(config.ServiceType, config);
await _capabilityEnforcer.Check(config); await _capabilityEnforcer.Check(config);
await _pipelines.Process(settings, config); await _pipelines.Process(settings, config);
_log.Information("Completed at {Date}", DateTime.Now);
} }
catch (Exception e) catch (Exception e)
{ {

Loading…
Cancel
Save