mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-22 22:10:35 +00:00
Log Plex sections response before checking for error
This commit is contained in:
parent
e79a2c742a
commit
ec774ccdb5
1 changed files with 2 additions and 1 deletions
|
@ -35,8 +35,9 @@ public List<PlexDirectory> GetTvSections(PlexServerSettings settings)
|
|||
|
||||
var response = client.Execute(request);
|
||||
|
||||
_logger.Trace("Sections response: {0}", response.Content);
|
||||
|
||||
CheckForError(response.Content);
|
||||
_logger.Debug("Sections response: {0}", response.Content);
|
||||
|
||||
return Json.Deserialize<PlexMediaContainer>(response.Content)
|
||||
.Directories
|
||||
|
|
Loading…
Reference in a new issue