mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-07 01:04:54 +00:00
Fixed: Improve exception logging when unable to connect to Plex
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using NzbDrone.Common.Exceptions;
|
||||
using System;
|
||||
using NzbDrone.Common.Exceptions;
|
||||
|
||||
namespace NzbDrone.Core.Notifications.Plex
|
||||
{
|
||||
@@ -11,5 +12,9 @@ namespace NzbDrone.Core.Notifications.Plex
|
||||
public PlexException(string message, params object[] args) : base(message, args)
|
||||
{
|
||||
}
|
||||
|
||||
public PlexException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -187,11 +187,11 @@ namespace NzbDrone.Core.Notifications.Plex.Server
|
||||
{
|
||||
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)
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user