mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
core: fix duplicate ID warning
the log security filter returned ID=(removed) which made the warning useless ;-D
This commit is contained in:
@@ -208,7 +208,7 @@ namespace Jackett.Common.Services
|
||||
{
|
||||
if (_indexers.ContainsKey(indexer.Id))
|
||||
{
|
||||
_logger.Warn($"Ignoring definition ID={indexer.Id}: Indexer already exists");
|
||||
_logger.Warn($"Ignoring definition ID {indexer.Id}: The indexer already exists");
|
||||
continue;
|
||||
}
|
||||
_indexers.Add(indexer.Id, indexer);
|
||||
|
Reference in New Issue
Block a user