fix: Remove log that prints CFs without scores

json-serializing-nullable-fields-issue
Robert Dailey 8 months ago
parent db4b8a01fd
commit 08db62ee8c

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

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

Loading…
Cancel
Save