[Fixed]-Python `traceback` production performance

1👍

No, there are no significant performance implications to this; the traceback is already present with the exception when it is raised.

All traceback.print_exc() does is print the information already there.

Leave a comment