Created
September 18, 2013 02:44
-
-
Save akerekes/6603794 to your computer and use it in GitHub Desktop.
JBoss deployment structure file to disable container provided logging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jboss-deployment-structure> | |
<deployment> | |
<exclusions> | |
<module name="org.apache.log4j"/> | |
<module name="org.slf4j"/> | |
<module name="org.slf4j.impl"/> | |
<module name="org.jboss.logging"/> | |
<module name="org.apache.commons.logging"/> | |
<module name="org.jboss.logging.jul-to-slf4j-stub"/> | |
</exclusions> | |
</deployment> | |
</jboss-deployment-structure> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment