As for the JUL logging ..found the given below hint in jboss forum and tried the same to initiate logging for specific application in jboss eap 6.3, but the steps didn't work out for enabling the log.
Found from jboss forum:
If you're using JUL logging the problem is there is no way for it to use a log4j configuration file. The server uses jboss-logmanager which is an extension of JUL. When java.util.logging.LogManager.getLogManager() is invoked it returns a org.jboss.logmanager.LogManager. This is how a logger is created if you're using JUL.
You can get logged messages from your application to go into a separate file. However any server components, e.g. JAX-RS, JSF, etc, will always log to servers log configuration. By default server.log.
There are three ways to get your applications messages to be logged to a different file.
kindly provide a alternate approach or a steps/implementation with some real time example will be better and appreciable.
There's links to the documentation on how to do this. I'm not sure what you're looking for here.
--
James R. Perkins