This content has been marked as final.
Show 2 replies
-
1. Re: How to Configure Logging with JBoss Wildfly?
wdfink Jan 28, 2014 7:54 AM (in response to rvcunanan)Simple case is to add the logger configuration to your standalone.xml (add a <logger category="my.package.Class"> for your application).
You will find the output whithin the server.log. If you prefer a separate log i.e. application auditing, you can add a separate handler to your logger and write to a different file.
Another way is to add the logging configuration to the application packaging which is described in the linked document.
-
2. Re: How to Configure Logging with JBoss Wildfly?
jamezp Jan 28, 2014 4:31 PM (in response to rvcunanan)1 of 1 people found this helpfulThere is nothing special you need to do in your Java code. You can use any logging framework including J.U.L, JBoss Logging, log4j, slf4j or commons logging. wfink explains the rest.
--
James R. Perkins