Skip to content

Instantly share code, notes, and snippets.

@akerekes
Created September 18, 2013 02:44
Show Gist options
  • Save akerekes/6603794 to your computer and use it in GitHub Desktop.
Save akerekes/6603794 to your computer and use it in GitHub Desktop.
JBoss deployment structure file to disable container provided logging
<?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