Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 823 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 823 Bytes

abrt-log-jboss

ABRT error handler for JBoss AS 7

Compile the jar file with maven: mvn package

Unzip the archive created in the target/zip folder at $JBOSS_HOME/modules.

Modify the JBoss configuration in standalone/configuration/standalone.xml like this:

<subsystem xmlns="urn:jboss:domain:logging:1.1">
    ...
    <custom-handler name="ABRT" class="com.redhat.abrt.log.jboss.AbrtLogHandler" module="org.abrt.log>
        <level name="ERROR"/>
    </custom-handler>
    ...
    <root-logger>
        <level name="INFO"/>
        <handlers>
            <handler name="CONSOLE"/>
            <handler name="FILE"/>
            <handler name="ABRT"/>
        </handlers>
    </root-logger>
</subsystem>