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
The SimpleAppender is designed to work like slf4j-simple, but it does not print any stacktraces. This is because it uses an unitialized ThrowableProxyConverter. This class has a lengthOption setting, which is 0 after instantiation, meaning that it will print 0 stack frames. This field is initialized to Integer.MAX_VALUE in the converter's start method, which is assumed to be called before it is used.
The SimpleAppender is designed to work like slf4j-simple, but it does not print any stacktraces. This is because it uses an unitialized
ThrowableProxyConverter
. This class has alengthOption
setting, which is 0 after instantiation, meaning that it will print 0 stack frames. This field is initialized to Integer.MAX_VALUE in the converter's start method, which is assumed to be called before it is used.My suggestion would be to use ThrowableProxyUtil.asString instead.
The text was updated successfully, but these errors were encountered: