I have searched, but have been unable to find a way to do this.  I need to add an appender after configuration has happened.  This is because whether or not the appender is even wanted is dependent on a runtime condition.  I&#39;ve seen plenty of examples using the sifting appender, but I don&#39;t want to include the appender in the config file because I don&#39;t want to create a dependency on the appender being there (it&#39;s an optional component).<div>
<br></div><div>I&#39;ve tried this:</div><div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>Logger testcase_logger = lc.getLogger(&quot;test&quot;);</div>
<div><span class="Apple-tab-span" style="white-space:pre">                        </span>logAppender.setContext(testcase_logger.getLoggerContext());</div><div><span class="Apple-tab-span" style="white-space:pre">                        </span>testcase_logger.addAppender(logAppender);</div>
</div><div><br></div><div>But I never get any logging events (this is a custom log appender).  Test is the base of all the loggers I want logging to this appender (I want anything with a test. at the beginning of the logger name to write to this appender).</div>
<div><br></div><div>Any ideas?</div><div><br></div><div>My custom appender extends AppenderBase&lt;ILoggingEvent&gt;.</div><div><br></div><div>Jason Corbett </div>