We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
@task_failure.connect def process_failure_signal(sender=None, task_id=None, exception=None, args=None, kwargs=None, traceback=None, einfo=None, **akwargs): # From https://groups.google.com/d/msg/celery-users/lb3_5aAFesA/E1R4TIUiAwgJ exc_info = (type(exception), exception, traceback) logger.error( 'Celery job exception: %s (%s)' % (exception.__class__.__name__, exception), exc_info=exc_info, extra={ 'data': { 'task_id': task_id, 'sender': sender, 'args': args, 'kwargs': kwargs, } } )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
The text was updated successfully, but these errors were encountered: