fix(radarr): log one line per cf with no score

It's a tuple with 3 values so it looks better with 1 per line
recyclarr
Robert Dailey 3 years ago
parent 3ae9639b0b
commit fe46340af8

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- The log message listing custom formats without scores in the guide now prints information one per
line (improved readability)
## [1.4.0] - 2021-05-14
### Added

@ -170,7 +170,10 @@ namespace Trash.Radarr.CustomFormat
Log.Warning("The below custom formats have no score in the guide or YAML " +
"config and will be skipped (remove them from your config or specify a " +
"score to fix this warning)");
Log.Warning("{CfList}", _guideProcessor.CustomFormatsWithoutScore);
foreach (var tuple in _guideProcessor.CustomFormatsWithoutScore)
{
Log.Warning("{CfList}", tuple);
}
}
if (_guideProcessor.CustomFormatsWithOutdatedNames.Count > 0)

Loading…
Cancel
Save