我的日志受到JBOSS 7中以下日志消息的打击。你能否建议如何停止此日志消息。
2018-02-28 13:37:13,618 WARN [com.arjuna.ats.arjuna] (default-threads - 48) ARJUNA012141: Multiple last resources have been added to the current transaction. This is transactionally unsafe and should not be relied upon. Current resource is LastResourceRecord(XAOnePhaseResource(LocalXAResourceImpl@5d70439b[connectionListener=653eac5d connectionManager=7f6856e8 warned=false currentXid=null productName=MySQL productVersion=10.2.13-MariaDB-log jndiName=java:/jdbc/db_jndi]))
答案 0 :(得分:0)
在standalone.xml文件的日志记录部分中,在相应的处理程序元素下添加类似的内容:
<filter>
<not>
<match pattern="ARJUNA012141"/>
</not>
</filter>
当然,您应该使用jboss-cli实用程序添加这些行。您是否知道对日志记录的更改不需要重新启动服务器,但是会在定义的刷新间隔内获取?