Package chapters.appenders.sub.sample

Examples of chapters.appenders.sub.sample.Bar


    }
    // After we've called Joran, let's print information about the
    // internal status of logback
    StatusPrinter.print(lc);

    logger.debug("**Hello {}", new Bar());
    MDC.put("testKey", "testValueFromMDC");
    MDC.put("testKey2", "value2");
    for (int i = 0; i < 10; i++) {
      logger.debug("logging statement " + i);
      Thread.sleep(100);
    }
    Bar bar = new Bar();
    bar.createLoggingRequest();
  }
View Full Code Here


    }
    // After we've called Joran, let's print information about the
    // internal status of logback
    StatusPrinter.print(lc);

    logger.debug("**Hello {}", new Bar());
    MDC.put("testKey", "testValueFromMDC");
    MDC.put("testKey2", "value2");
    for (int i = 0; i < 10; i++) {
      logger.debug("logging statement " + i);
      Thread.sleep(100);
    }
    Bar bar = new Bar();
    bar.createLoggingRequest();
  }
View Full Code Here

    }
    // After we've called Joran, let's print information about the
    // internal status of logback
    StatusPrinter.print(lc);

    logger.debug("**Hello {}", new Bar());
    MDC.put("testKey", "testValueFromMDC");
    MDC.put("testKey2", "value2");
    for (int i = 0; i < 10; i++) {
      logger.debug("logging statement " + i);
      Thread.sleep(100);
    }
    Bar bar = new Bar();
    bar.createLoggingRequest();
  }
View Full Code Here

TOP

Related Classes of chapters.appenders.sub.sample.Bar

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.