]
James Perkins updated LOGMGR-259:
---------------------------------
Git Pull Request:
Named filters throw an IllegalArgumentException if they are embedded
in an expression
-------------------------------------------------------------------------------------
Key: LOGMGR-259
URL:
https://issues.jboss.org/browse/LOGMGR-259
Project: JBoss Log Manager
Issue Type: Bug
Reporter: James Perkins
Assignee: James Perkins
Priority: Major
A named filter, one that was added via the configuration API, will throw an
{{IllegalArgumentException}} if they are embedded in a filter expression.
The following should be a valid expression as "all" is a changed filter and
"test" is the manually created filter.
{code}
logContextConfiguration.addFilterConfiguration(null, "org.jboss.filter.Test",
"test");
logContextConfiguration.getLoggerConfiguration("").setFilter("all(test)");
{code}