Skip to content

Commit

Permalink
core: show indexer id if cardigann definition is wrong (#9905)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngosang committed Oct 19, 2020
1 parent da07614 commit ec48676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackett.Common/Services/IndexerManagerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void InitCardigannIndexers(IEnumerable<string> path)
}
catch (Exception e)
{
logger.Error($"Error while creating Cardigann instance from Definition: {e}");
logger.Error($"Error while creating Cardigann instance from definition ID={definition.Id}: {e}");
return null;
}
}).Where(cardigannIndexer => cardigannIndexer != null).ToList(); // Explicit conversion to list to avoid repeated resource loading
Expand Down

0 comments on commit ec48676

Please sign in to comment.