diff --git a/CHANGELOG.md b/CHANGELOG.md index a72a1564..37e08c4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/src/Recyclarr.TrashLib/Services/CustomFormat/CustomFormatUpdater.cs b/src/Recyclarr.TrashLib/Services/CustomFormat/CustomFormatUpdater.cs index 72abbe6b..75380e43 100644 --- a/src/Recyclarr.TrashLib/Services/CustomFormat/CustomFormatUpdater.cs +++ b/src/Recyclarr.TrashLib/Services/CustomFormat/CustomFormatUpdater.cs @@ -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;