diff --git a/CHANGELOG.md b/CHANGELOG.md index 614cd8fa..20145ac6 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 + +- Remove INF log that showed a total count of CFs without scores assigned. This log caused a lot of + confusion in support channels. You can still see a list of CFs without scores in the debug logs. + ## [5.4.2] - 2023-09-14 ### Fixed diff --git a/src/Recyclarr.Cli/Pipelines/QualityProfile/PipelinePhases/QualityProfileConfigPhase.cs b/src/Recyclarr.Cli/Pipelines/QualityProfile/PipelinePhases/QualityProfileConfigPhase.cs index 6e065d62..35d8b3a5 100644 --- a/src/Recyclarr.Cli/Pipelines/QualityProfile/PipelinePhases/QualityProfileConfigPhase.cs +++ b/src/Recyclarr.Cli/Pipelines/QualityProfile/PipelinePhases/QualityProfileConfigPhase.cs @@ -82,10 +82,6 @@ public class QualityProfileConfigPhase return; } - _log.Information( - "A total of {Count} custom formats have no scores assigned. See the debug logs for a detailed listing.", - scoreless.Count); - foreach (var (name, trashId) in scoreless) { _log.Debug("CF has no score in the guide or config YAML: {Name} ({TrashId})", name, trashId);