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
{{ message }}
This repository was archived by the owner on Mar 22, 2024. It is now read-only.
Quite often, higher-level code wraps exceptions thrown by lower-level code into their own exceptions. The stacktrace of the wrapping exception then only contains the higher-level location where the wrapping exception was thrown, not the lower-level location where the original exception happened.
Usually logging appenders resolve this problem by showing the wrapped exception and some of its stacktrace below the trace of the wrapping exception, separated by a "Caused by..." line (or similar).
It would be good to have this here, too.