diff options
-rw-r--r-- | snekbox/nsjail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/nsjail.py b/snekbox/nsjail.py index 77cd321..b6616a4 100644 --- a/snekbox/nsjail.py +++ b/snekbox/nsjail.py @@ -289,7 +289,7 @@ class NsJail: args, None, "TimeoutError: Exceeded time limit while parsing attachments" ) except Exception as e: - log.error(f"Unexpected {type(e).__name__} while parse attachments: {e}") + log.exception(f"Unexpected {type(e).__name__} while parse attachments", exc_info=e) return EvalResult( args, None, "FileParsingError: Unknown error while parsing attachments" ) |