找到JBOSS目录中的standalone.xml,并在standalone.xml中新增一下几行代码,问题解决!
<?xml version='1.0' encoding='UTF-8'?>
<server xmlns="urn:jboss:domain:1.1">
...
<profile>
<subsystem xmlns="urn:jboss:domain:logging:1.1">
<console-handler name="CONSOLE">
<level name="INFO"/>
[color=red] <filter>
<not>
<match pattern="JBAS011006"/>
</not>
</filter>[/color]
...
<?xml version='1.0' encoding='UTF-8'?>
<server xmlns="urn:jboss:domain:1.1">
...
<profile>
<subsystem xmlns="urn:jboss:domain:logging:1.1">
<console-handler name="CONSOLE">
<level name="INFO"/>
[color=red] <filter>
<not>
<match pattern="JBAS011006"/>
</not>
</filter>[/color]
...