Reputation: 13
I am using JBoss AS 7.1 . I want to somehow specify that only ERROR gets printed on the console .
Upvotes: 0
Views: 63
Reputation: 327
Open standalone.xml
Go to
<subsystem xmlns="urn:jboss:domain:logging:1.0">
<console-handler name="CONSOLE" autoflush="true">
<level name="DEBUG"/>
Change level to ERROR
from DEBUG
Upvotes: 1