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
fix: include stacktrace for non-error logs (#69)
The Python logging framework allows users to pass an exc_info kwarg to the logging methods, in which case the stacktrace is included even if loggers other than Logger.exception() is used.
Fix: stacktrace not shown in kibana (#63)
* Fix: stacktrace not shown in kibana
When logging exceptions with logging.exception(), the cf-python-logging
library will emit the stacktrace as a separate field in the JSON. This field
is now being filtered by the BTP and no longer visible in Kibana.
This commit adds the stacktrace to the main 'msg' field and thus makes it
possible again to debug exceptions in our Python applications.
* fix version
Co-authored-by: Kiril Maslenkov <kiril.maslenkov@sap.com>