]
James Perkins updated LOGMGR-174:
---------------------------------
Fix Version/s: 2.1.0.Alpha6
Filter expressions do not allow all types of regular expressions
----------------------------------------------------------------
Key: LOGMGR-174
URL:
https://issues.jboss.org/browse/LOGMGR-174
Project: JBoss Log Manager
Issue Type: Bug
Reporter: James Perkins
Assignee: Yeray Borges
Fix For: 2.1.0.Alpha6
Some filter expressions require regex as an argument. The parsing of the regex does not
allow for all expressions to be used. For example you can't use:
{code}
substituteAll("\\s", "replaced")
{code}
The pattern fails to be parsed. Using {{substituteAll("\s",
"replaced")}} results in a pattern of {{s}}.