You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When unexpected errors occur, we currently only log the repr of the caught exception. I propose that we should begin logging tracebacks for better visibility into issues. To do so requires two steps:
begin logging caught exceptions with logger.exception(msg) (this will require a full audit; some caught exceptions are currently being logged as "INFO", others as "DEBUG")
in the CloudHandler itself, include traceback text by:
When unexpected errors occur, we currently only log the repr of the caught exception. I propose that we should begin logging tracebacks for better visibility into issues. To do so requires two steps:
logger.exception(msg)
(this will require a full audit; some caught exceptions are currently being logged as "INFO", others as "DEBUG")CloudHandler
itself, include traceback text by:The text was updated successfully, but these errors were encountered: