fix: Do not print skipped CFs to the console

They are too verbose
pull/201/head
Robert Dailey 1 year ago
parent 8c7768891e
commit d73a888247

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Do not print skipped custom formats to console (they are too verbose). If you still want to see
what was skipped, check the log file for additional debug logs.
### Fixed
- More scenarios were causing custom formats to sometimes not be synced (#160).

@ -138,10 +138,7 @@ internal class CustomFormatUpdater : ICustomFormatUpdater
_log.Debug("Custom Formats Skipped: {CustomFormats}",
skipped.ToDictionary(k => k.TrashId, v => v.Name));
foreach (var mapping in skipped)
{
_console.Output.WriteLine($"> Skipped: {mapping.TrashId} ({mapping.Name})");
}
// Do not print skipped CFs to console; they are too verbose
}
var deleted = transactions.DeletedCustomFormatIds;

Loading…
Cancel
Save