diff --git a/src/Trash/Command/RadarrCommand.cs b/src/Trash/Command/RadarrCommand.cs index 85612b29..f29d33a3 100644 --- a/src/Trash/Command/RadarrCommand.cs +++ b/src/Trash/Command/RadarrCommand.cs @@ -47,6 +47,8 @@ public class RadarrCommand : ServiceCommand { foreach (var config in _configLoader.LoadMany(Config, "radarr")) { + _log.Information("Processing server {Url}", config.BaseUrl); + if (config.QualityDefinition != null) { await _qualityUpdaterFactory().Process(Preview, config); diff --git a/src/Trash/Command/SonarrCommand.cs b/src/Trash/Command/SonarrCommand.cs index 6974d5b5..4918168f 100644 --- a/src/Trash/Command/SonarrCommand.cs +++ b/src/Trash/Command/SonarrCommand.cs @@ -46,6 +46,8 @@ public class SonarrCommand : ServiceCommand { foreach (var config in _configLoader.LoadMany(Config, "sonarr")) { + _log.Information("Processing server {Url}", config.BaseUrl); + if (config.ReleaseProfiles.Count > 0) { await _profileUpdaterFactory().Process(Preview, config);