I want some Exceptions to not appear in the server's console log.
I tried to set a filter in standalone.xml
but the exception still shows up.
<console-handler name="CONSOLE">
<level name="INFO"/>
<filter-spec value="not(match(".*java.lang.RuntimeException.*"))" />
<formatter>
<named-formatter name="COLOR-PATTERN"/>
</formatter>
</console-handler>
What am I missing?