What are the different approaches for changing the log4j log level dynamically, so that I don't to redeploy the application. Will the changes be permanent in those cases?
|
|
Changing the log level is simple; modifying other portions of the configuration will pose a more in depth approach.
The changes are permanent through the life cyle of the |
|||||||||
|
File WatchdogLog4j is able to watch the Caution: configureAndWatch method is unsafe for use in J2EE environments due to a Thread leak JMXAnother way to set the log level (or reconfiguring in general) log4j is by using JMX. Log4j registers its loggers as JMX MBeans. Using the application servers MBeanServer consoles (or JDK's jconsole.exe) you can reconfigure each individual loggers. These changes are not persistent and would be reset to the config as set in the configuration file after you restart your application (server). Self-MadeAs described by Aaron, you can set the log level programmatically. You can implement it in your application in the way you would like it to happen. For example, you could have a GUI where the user or admin changes the log level and then call the |
|||||
|