Package ch.qos.logback.core.helpers

Examples of ch.qos.logback.core.helpers.NOPAppender


    File file = new File(logConfigDir, LOG_CONF);
    logger.debug("Reconfiguring: {}", file);

    LoggerContext context = getLoggerContext();
    Object bundleContext = context.getObject(PAX_BUNDLE_CONTEXT_KEY);
    NOPAppender nopAppender = new NOPAppender();
    nopAppender.setContext(context);
    nopAppender.start();

    try {
      JoranConfigurator configurator = new JoranConfigurator();
      configurator.setContext(context);
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.helpers.NOPAppender

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.