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
Note that this will not change the behavior of the logs in the plugins until they are recompiled against the new core (but at least it is binary compatible)
There are at least hundreds of places in our codebase where the code reads like
This swallows the exception stacktrace.
SLF4J decided against accepting object as an input to a log method because of this : https://www.slf4j.org/faq.html#string_or_object
(although log4j2 still has this API..)
What about adding a new override to AppLogService like this ?
If people really want to log only the exception name, then they can do
AppLogService.error ( e.toString() );
@rzara @pierrelevy ?
The text was updated successfully, but these errors were encountered: