Another small logging fix

This commit is contained in:
Dylan 2023-08-01 14:20:42 +01:00
parent aafb72f307
commit e953ccac80

View File

@ -39,6 +39,9 @@ def debug(message):
def get_exception_traceback_str(exc: Exception) -> str:
# Ref: https://stackoverflow.com/a/76584117/
file = StringIO()
traceback.print_exception(exc, file=file)
return file.getvalue().rstrip()
try:
file = StringIO()
traceback.print_exception(exc, file=file)
return file.getvalue().rstrip()
except:
return str(exc)