You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :) )
Thank you in advance
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: