indexerManagerService: identify tracker in exception message

This commit is contained in:
Garfield69 2021-08-25 14:27:50 +12:00
parent e2399f1302
commit b74f71b208
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ namespace Jackett.Common.Services
logger.Info($"Test search in {indexer.DisplayName} => Found {result.Releases.Count()} releases");
if (!result.Releases.Any())
throw new Exception("Found no results while trying to browse this tracker");
throw new Exception($"Test search in {indexer.DisplayName} => Found no results while trying to browse this tracker");
}
public void DeleteIndexer(string name)