mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-27 10:58:34 +01:00
Log web exceptions in test connection
This commit is contained in:
parent
ce615a77c2
commit
c3e40c0564
1 changed files with 1 additions and 1 deletions
|
|
@ -733,7 +733,7 @@ protected virtual async Task<ValidationFailure> TestConnection()
|
|||
}
|
||||
catch (WebException webException)
|
||||
{
|
||||
_logger.Warn("Unable to connect to indexer.");
|
||||
_logger.Warn(webException, "Unable to connect to indexer.");
|
||||
|
||||
if (webException.Status is WebExceptionStatus.NameResolutionFailure or WebExceptionStatus.ConnectFailure)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue