I am migrating an application from Weblogic to JBoss EAP 6.4. The application originally used Log4J
and an external logging configuration properties file. From what I understand, using Log4J
would require the log4j.xml
or log4j.properties
file to be packaged inside the EAR and it would prevent us from changing the logging configuration at runtime.
Currently, I am ok with using the JBoss Logging subsystem to do the logging. However, the application has calls like:
Logger rootLogger = Logger.getRootLogger();
What is the equivalent in JBoss Logging, if I needed to get the RootLogger
?