Specifically state that the exception killed the log context.

master
voussoir 2021-08-28 14:58:11 -07:00
parent 51d9a5202a
commit 8eed09c14b
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 4 additions and 1 deletions

View File

@ -162,7 +162,10 @@ class LogHandlerContext:
if exc_type not in (None, KeyboardInterrupt):
exc_text = traceback.format_exception(exc_type, exc_value, exc_traceback)
exc_text = ''.join(exc_text)
exc_text = f'\n{exc_text}\n'
exc_text = '\n'.join([
'The context was killed by the following exception:',
f'{exc_text}'
])
# Intentionally using module's log, not self.log because I think
# it should be clear who emitted the message, and the caller can
# mute this module if they want to.