1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 21:24:56 +00:00

New: Add indexer name to the download report log

This commit is contained in:
Dtaggart 2022-10-17 13:19:26 -04:00 committed by GitHub
parent d1f2a8a948
commit 00d467314b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ namespace NzbDrone.Core.Download
episodeGrabbedEvent.DownloadId = downloadClientId;
}
_logger.ProgressInfo("Report sent to {0}. {1}", downloadClient.Definition.Name, downloadTitle);
_logger.ProgressInfo("Report sent to {0}. Indexer {1}. {2}", downloadClient.Definition.Name, remoteEpisode.Release.Indexer, downloadTitle);
_eventAggregator.PublishEvent(episodeGrabbedEvent);
}
}