Log response content from Kodi when checking for errors

This commit is contained in:
Qstick 2018-02-22 21:02:21 -05:00
parent 97a0daa1aa
commit 346647523b
1 changed files with 2 additions and 2 deletions

View File

@ -122,13 +122,13 @@ namespace NzbDrone.Core.Notifications.Xbmc
private void CheckForError(IRestResponse response) private void CheckForError(IRestResponse response)
{ {
_logger.Debug("Looking for error in response: {0}", response);
if (string.IsNullOrWhiteSpace(response.Content)) if (string.IsNullOrWhiteSpace(response.Content))
{ {
throw new XbmcJsonException("Invalid response from XBMC, the response is not valid JSON"); throw new XbmcJsonException("Invalid response from XBMC, the response is not valid JSON");
} }
_logger.Trace("Looking for error in response, {0}", response.Content);
if (response.Content.StartsWith("{\"error\"")) if (response.Content.StartsWith("{\"error\""))
{ {
var error = Json.Deserialize<ErrorResult>(response.Content); var error = Json.Deserialize<ErrorResult>(response.Content);