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
As mentioned on the janino expression migrator page, make sure to include only the boolean expression itself, i.e. the contents within the <expression> element nested within the <evaluator> element (implicitly of class JaninoEventEvaluator) nested within <filter> element of class EvaluatorFilter.
In you case, the boolean expression to migrate is:
logback.xml:
%msg%n
if(level > DEBUG) {
return true;
}else{
return false;
}
ACCEPT
DENY
java file:
LOGGER.debug("Not show!");
In version 1.5.13, 1.5.14 ,1.5.15 ,1.5.16 "the not show!" is printed, which should not be there.
Please fix. Thank you.
The text was updated successfully, but these errors were encountered: