-
Bug
-
Resolution: Done
-
Major
-
7.1.1.Final
-
None
-
Workaround Exists
-
In standalone.xml I'm trying to filter out wrong error messages:
<subsystem xmlns="urn:jboss:domain:logging:1.1">
<console-handler name="CONSOLE">
<filter>
<all>
<not><match pattern="JBAS014101: Failed to find SFSB instance with session ID"/></not>
<not><match pattern="JBAS011806: Channel end notification received, closing channel Channel ID"/></not>
</all>
</filter>
</console-handler>
But this doesn't work, and under debugger I see that the configuration got parsed as
"filter" => {"all" => {"not" =>
}},
Looks like due to the use of maps for storing the parsing results the first "not" filter got overwritten by the second "not" filter.
- is blocked by
-
AS7-5525 Make filters string based
-
- Resolved
-