Changing JBoss Logging Level

Still need help?

The Atlassian Community is here for you.

Ask the community

Unable to render {include} The included page could not be found.

Symptoms

Logs are not following JIRA's configured logging levels.

Cause

The JBoss logging configuration overrides that of JIRA.

Resolution

Modify the JBoss logging configuration file: /server/configuration name/conf/log4j.xml

 

  • Edit the following tag:

    <root>
      <appender-ref ref="CONSOLE"/>
      <appender-ref ref="FILE"/>
    </root>
    

    To:

    <root>
      <priority value ="logging level" />
      <appender-ref ref="CONSOLE"/>
      <appender-ref ref="FILE"/>
    </root>
    

    (info) The added tag <priority value ="logging level" /> will instruct the default logger to follow the defined logging levels (ALL, ERROR, WARN, INFO, DEBUG, TRACE)

Last modified on Feb 26, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.