This commit is contained in:
Jamie Rees 2016-03-17 21:53:45 +00:00
parent 35b1f2b257
commit f5cb4d6879
5 changed files with 97 additions and 5 deletions

View file

@ -98,13 +98,13 @@ namespace PlexRequests.Api
try
{
var json = JsonConvert.DeserializeObject<T>(response.Content);
return json;
}
catch (Exception e)
{
Log.Fatal(e);
Log.Info(response.Content);
throw;
}
}