Package ch.qos.logback.core.util

Examples of ch.qos.logback.core.util.ContextUtil


      addInfo("Ignoring " + INTERNAL_DEBUG_ATTR + " attribute.");
    } else {
      debugMode = true;
    }

    new ContextUtil(context).addHostNameAsProperty();

    // the context is appender attachable, so it is pushed on top of the stack
    ec.pushObject(getContext());
  }
View Full Code Here


      addInfo(INTERNAL_DEBUG_ATTR + " attribute not set");
    } else {
      OnConsoleStatusListener.addNewInstanceToContext(context);
    }

    new ContextUtil(context).addHostNameAsProperty();

    // the context is appender attachable, so it is pushed on top of the stack
    ec.pushObject(getContext());
  }
View Full Code Here

      debugMode = true;
    }

    processScanAttrib(attributes);

    new ContextUtil(context).addHostNameAsProperty();

    // the context is turbo filter attachable, so it is pushed on top of the
    // stack
    ec.pushObject(getContext());
  }
View Full Code Here

      addInfo("Ignoring " + INTERNAL_DEBUG_ATTR + " attribute.");
    } else {
      debugMode = true;
    }

    new ContextUtil(context).addHostNameAsProperty();

    // the context is appender attachable, so it is pushed on top of the stack
    ec.pushObject(getContext());
  }
View Full Code Here

      debugMode = true;
    }

    processScanAttrib(attributes);

    new ContextUtil(context).addHostNameAsProperty();

    // the context is turbo filter attachable, so it is pushed on top of the
    // stack
    ec.pushObject(getContext());
  }
View Full Code Here

      OnConsoleStatusListener.addNewInstanceToContext(context);
    }

    processScanAttrib(attributes);

    new ContextUtil(context).addHostNameAsProperty();

    // the context is turbo filter attachable, so it is pushed on top of the
    // stack
    ec.pushObject(getContext());
  }
View Full Code Here

      OnConsoleStatusListener.addNewInstanceToContext(context);
    }

    processScanAttrib(ic, attributes);

    new ContextUtil(context).addHostNameAsProperty();

    // the context is turbo filter attachable, so it is pushed on top of the
    // stack
    ic.pushObject(getContext());
  }
View Full Code Here

    switch (scope) {
    case LOCAL:
      ic.addSubstitutionProperties(props);
      break;
    case CONTEXT:
      ContextUtil cu = new ContextUtil(ic.getContext());
      cu.addProperties(props);
      break;
    case SYSTEM:
      OptionHelper.setSystemProperties(ic, props);
    }
  }
View Full Code Here

  public void setProperties(InterpretationContext ec, Properties props, Scope scope) {
    switch(scope) {
      case LOCAL: ec.addSubstitutionProperties(props);
        break;
      case CONTEXT:
        ContextUtil cu = new ContextUtil((context));
        cu.addProperties(props);
        break;
      case SYSTEM:
        OptionHelper.setSystemProperties(this, props);
    }
  }
View Full Code Here

      OnConsoleStatusListener.addNewInstanceToContext(context);
    }

    processScanAttrib(attributes);

    new ContextUtil(context).addHostNameAsProperty();

    // the context is turbo filter attachable, so it is pushed on top of the
    // stack
    ec.pushObject(getContext());
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.util.ContextUtil

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.