I thought I had found a solution of being able to change a custom appender's level value on the fly by utilizing the jsp tag referenced here;
http://nayidisha.com/techblog/mycontent/posts/nd-utils/site/loggerAdmin.html
Unfortunately, the link is broken so I am unable to download the utility. The article was from 2009 and appears to be an exact match for what I need. Anyone have any ideas on how to accomplish? Below is an example:
[log4j.xml] snippet
<logger name="EXAMPLE_LOGGER" additivity="false">
<level value="DEBUG" />
<appender-ref ref="EXXAMPLE_LOG_APPENDER" />
</logger>
I am looking for some way to modify the "level value" on the fly without restarting the managed server or polling the log4j.xml file. Thanks in advance for any insight.