I'd like to add some info about the Job name in the failed jobs logs :
Something like this ⬇️
From :
_logger.ErrorException(
$"Failed to process the job '{context.BackgroundJob.Id}': an exception occurred.",
failedState.Exception);
To :
_logger.ErrorException(
$"Failed to process the job '{context.BackgroundJob.Job?.Type.Name}' with id '{context.BackgroundJob.Id}': an exception occurred.",
failedState.Exception);
Is it possible ? I have a branch already ready in local if you want, but I can't create a PR (I'm pretty new, feel free to tell me if it's not the correct way of asking :) )
Hello :)
I'd like to add some info about the
Job name
in the failed jobs logs : Something like this ⬇️From :
To :
Is it possible ? I have a branch already ready in local if you want, but I can't create a PR (I'm pretty new, feel free to tell me if it's not the correct way of asking :) )
Thank you in advance