我想过滤我的wildfly10日志文件。
我收到这样的错误消息:
28 Feb 2019 11:22:43,906 ERROR [com.ser.sedna.services.transfer.xf.util.InvocationContextImpl] (default task-6) Exception caught in webservice method.: SECU0015I: The caller **** does not have the abacRead permission on...
我的配置如下:
<size-rotating-file-handler name="FILE" autoflush="true">
<level name="INFO"/>
<filter-spec value="not(match("WFLYEJB0043|SECU0015I|abacRead"))"/>
<formatter>
<pattern-formatter pattern="%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
</formatter>
<file path="*****/server.log"/>
<rotate-size value="15M"/>
<max-backup-index value="10"/>
<append value="true"/>
</size-rotating-file-handler>
我设置的过滤器不起作用。我在做什么错了?