Package ch.qos.logback.classic.control

Examples of ch.qos.logback.classic.control.TestAction


    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    CreateLogger cl = null;
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        cl = (CreateLogger) action;
      }
    }
    if(cl == null) {
View Full Code Here


    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        CreateLogger cl = (CreateLogger) action;
        listLoggerContext.getLogger(cl.getLoggerName());
      }
    }
View Full Code Here

  static void testHashLoggers(Scenario s) {
    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        CreateLogger cl = (CreateLogger) action;
        hashLoggerContext.getLogger(cl.getLoggerName());
      }
    }
View Full Code Here

    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        CreateLogger cl = (CreateLogger) action;
        controlContext.getLogger(cl.getLoggerName());
      }
    }
View Full Code Here

    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        CreateLogger cl = (CreateLogger) action;
        log4jHierarchy.getLogger(cl.getLoggerName());
      }
    }
View Full Code Here

    List actionList = s.getActionList();
    int size = actionList.size();
    long start = System.nanoTime();
    for (int i = 0; i < size; i++) {
      TestAction action = (TestAction) actionList.get(i);
      if (action instanceof CreateLogger) {
        CreateLogger cl = (CreateLogger) action;
        java.util.logging.Logger.getLogger(cl.getLoggerName());
      }
    }
View Full Code Here

TOP

Related Classes of ch.qos.logback.classic.control.TestAction

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.