mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-14 08:50:48 +02:00
Log removal of invalid definitions as warnings
This commit is contained in:
parent
befb354913
commit
3d61719a2c
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ private void RemoveMissingImplementations()
|
|||
|
||||
foreach (var invalidDefinition in storedProvider.Where(def => GetImplementation(def) == null))
|
||||
{
|
||||
_logger.Debug("Removing {0} ", invalidDefinition.Name);
|
||||
_logger.Warn("Removing {0}", invalidDefinition.Name);
|
||||
_providerRepository.Delete(invalidDefinition);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue