Added `.exception` action to logger plugin

This commit is contained in:
Fabio Manganiello 2022-04-03 00:26:39 +02:00
parent f7c594cc3f
commit 486801653a
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 7 additions and 0 deletions

View File

@ -41,6 +41,13 @@ class LoggerPlugin(Plugin):
"""
self.logger.error(msg, *args, **kwargs)
@action
def exception(self, exception, *args, **kwargs):
"""
logger.exception wrapper
"""
self.logger.exception(exception, *args, **kwargs)
# vim:sw=4:ts=4:et: