New: Log indexer when processing results

This commit is contained in:
Qstick
2018-01-14 15:04:05 -05:00
parent 9dfa8c5b10
commit 80a5701b99
2 changed files with 5 additions and 2 deletions
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using NLog;
@@ -52,6 +52,8 @@ namespace NzbDrone.Core.Indexers
lock (result)
{
_logger.Debug("Found {0} from {1}", indexerReports.Count, indexer.Name);
result.AddRange(indexerReports);
}
}
@@ -71,4 +73,4 @@ namespace NzbDrone.Core.Indexers
return result;
}
}
}
}