1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-25 17:27:48 +00:00

cardigann: log error with redirect url when redirected (#14003)

This commit is contained in:
Bogdan 2023-02-11 15:49:21 +02:00 committed by GitHub
parent cc86e63b57
commit c454973730
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -865,6 +865,8 @@ namespace Jackett.Common.Indexers
throw new ExceptionWithConfigData(errormessage, configData); throw new ExceptionWithConfigData(errormessage, configData);
} }
logger.Error($"Redirected to: {Result.RedirectingTo}");
return true; return true;
} }
@ -2261,4 +2263,3 @@ namespace Jackett.Common.Indexers
} }
} }
} }