Matrix Integration #217

Merged
blacklight merged 30 commits from matrix-integration into master 2022-08-28 15:21:05 +02:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 550f026e13 - Show all commits

View File

@ -293,9 +293,8 @@ class Request(Message):
)
)
except (AssertionError, TimeoutError) as e:
plugin.logger.exception(e)
logger.warning(
'{} from action [{}]: {}'.format(type(e), action, str(e))
'%s from action [%s]: %s', e.__class__.__name__, action, str(e)
)
response = Response(output=None, errors=[str(e)])
except Exception as e: