user3786045
user3786045

Reputation: 13

Specify log level in Jboss AS 7.1

I am using JBoss AS 7.1 . I want to somehow specify that only ERROR gets printed on the console .

Upvotes: 0

Views: 63

Answers (1)

Neeraj
Neeraj

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

Related Questions