Now logging nzb&torrent response sizes.

This commit is contained in:
Taloth Saldono 2015-07-22 20:33:20 +02:00
parent 794a7957ef
commit 9fe8477a40
2 changed files with 4 additions and 0 deletions

View File

@ -125,6 +125,8 @@ namespace NzbDrone.Core.Download
}
torrentFile = response.ResponseData;
_logger.Debug("Downloading torrent for episode '{0}' finished ({1} bytes from {2})", torrentFile.Length, torrentUrl);
}
catch (HttpException ex)
{

View File

@ -48,6 +48,8 @@ namespace NzbDrone.Core.Download
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)
{