mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-19 11:20:49 +02:00
Fixed: (HttpIndexerBase) Add IndexerAuthException to logs
This commit is contained in:
parent
234707b291
commit
626d777d3c
1 changed files with 2 additions and 2 deletions
|
|
@ -240,10 +240,10 @@ protected virtual async Task<IndexerPageableQueryResult> FetchReleases(Func<IInd
|
|||
_indexerStatusService.RecordFailure(Definition.Id, TimeSpan.FromHours(1));
|
||||
_logger.Warn("API Request Limit reached for {0}", this);
|
||||
}
|
||||
catch (IndexerAuthException)
|
||||
catch (IndexerAuthException ex)
|
||||
{
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
_logger.Warn("Invalid Credentials for {0} {1}", this, url);
|
||||
_logger.Warn(ex, "Invalid Credentials for {0} {1}", this, url);
|
||||
}
|
||||
catch (CloudFlareProtectionException ex)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue