mirror of https://github.com/lidarr/Lidarr
Merge pull request #959 from roguecode/develop
Fixed: Indexer failure log message with local time
This commit is contained in:
commit
2693a3df2e
|
@ -75,7 +75,7 @@ namespace NzbDrone.Core.Indexers
|
||||||
IndexerStatus blockedIndexerStatus;
|
IndexerStatus blockedIndexerStatus;
|
||||||
if (blockedIndexers.TryGetValue(indexer.Definition.Id, out blockedIndexerStatus))
|
if (blockedIndexers.TryGetValue(indexer.Definition.Id, out blockedIndexerStatus))
|
||||||
{
|
{
|
||||||
_logger.Debug("Temporarily ignoring indexer {0} till {1} due to recent failures.", indexer.Definition.Name, blockedIndexerStatus.DisabledTill.Value);
|
_logger.Debug("Temporarily ignoring indexer {0} till {1} due to recent failures.", indexer.Definition.Name, blockedIndexerStatus.DisabledTill.Value.ToLocalTime());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue