From 72fcbb0fc1e0c347c827042722c68ab5efbcfb2e Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 9 Jul 2025 09:36:21 -0500 Subject: Move error handling into separate package. --- gn_auth/errors/tracing.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 gn_auth/errors/tracing.py (limited to 'gn_auth/errors/tracing.py') diff --git a/gn_auth/errors/tracing.py b/gn_auth/errors/tracing.py new file mode 100644 index 0000000..25b544f --- /dev/null +++ b/gn_auth/errors/tracing.py @@ -0,0 +1,18 @@ +"""Utilities for improving error tracing.""" +import logging +import traceback + +from flask import request + +logger = logging.getLogger(__name__) + + +def add_trace(exc: Exception, errobj: dict) -> dict: + """Add the traceback to the error handling object.""" + logger.error("Endpoint: %s\n%s", + request.url, + traceback.format_exception(exc)) + return { + **errobj, + "error-trace": "".join(traceback.format_exception(exc)) + } -- cgit v1.2.3