1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed: Improve exception logging when unable to connect to Plex Media Server

This commit is contained in:
Mark McDowall 2019-04-12 17:46:47 -07:00
parent 7922a3856e
commit 81c8fc0381
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,5 @@
using NzbDrone.Common.Exceptions;
using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Plex
{
@ -11,5 +12,9 @@ public PlexException(string message) : base(message)
public PlexException(string message, params object[] args) : base(message, args)
{
}
public PlexException(string message, Exception innerException) : base(message, innerException)
{
}
}
}

View File

@ -191,11 +191,11 @@ private string ProcessRequest(HttpRequestBuilder requestBuilder)
throw new PlexAuthenticationException("Unauthorized - AuthToken is invalid");
}
throw new PlexException("Unable to connect to Plex Media Server");
throw new PlexException("Unable to connect to Plex Media Server. Status Code: {0}", ex.Response.StatusCode);
}
catch (WebException ex)
{
throw new PlexException("Unable to connect to Plex Media Server");
throw new PlexException("Unable to connect to Plex Media Server", ex);
}
return response.Content;