mirror of https://github.com/Sonarr/Sonarr
Log Skyhook connection failures with more info.
This commit is contained in:
parent
6672650b6b
commit
f57cf1561b
|
@ -1,4 +1,5 @@
|
||||||
using System.Net;
|
using System;
|
||||||
|
using System.Net;
|
||||||
using NzbDrone.Core.Exceptions;
|
using NzbDrone.Core.Exceptions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.MetadataSource.SkyHook
|
namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||||
|
@ -15,7 +16,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||||
}
|
}
|
||||||
|
|
||||||
public SkyHookException(string message, Exception innerException, params object[] args)
|
public SkyHookException(string message, Exception innerException, params object[] args)
|
||||||
: base(HttpStatusCode.ServiceUnavailable, innerException, message, args)
|
: base(HttpStatusCode.ServiceUnavailable, message, innerException, args)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue