mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Now logging nzb&torrent response sizes.
This commit is contained in:
parent
794a7957ef
commit
9fe8477a40
@ -125,6 +125,8 @@ private string DownloadFromWebUrl(RemoteEpisode remoteEpisode, String torrentUrl
|
||||
}
|
||||
|
||||
torrentFile = response.ResponseData;
|
||||
|
||||
_logger.Debug("Downloading torrent for episode '{0}' finished ({1} bytes from {2})", torrentFile.Length, torrentUrl);
|
||||
}
|
||||
catch (HttpException ex)
|
||||
{
|
||||
|
@ -48,6 +48,8 @@ public override String Download(RemoteEpisode remoteEpisode)
|
||||
try
|
||||
{
|
||||
nzbData = _httpClient.Get(new HttpRequest(url)).ResponseData;
|
||||
|
||||
_logger.Debug("Downloaded nzb for episode '{0}' finished ({1} bytes from {2})", nzbData.Length, url);
|
||||
}
|
||||
catch (HttpException ex)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user