Package osgi.enroute.logger.api.LoggerAdmin

Examples of osgi.enroute.logger.api.LoggerAdmin.Control


    if (admin != null) {
      //
      // We have an admin. So we actually get our settins
      // from this admin.
      //
      Control control = admin.getControl(this.name);
      debug = control.level.ordinal() <= Level.DEBUG.ordinal();
      info = control.level.ordinal() <= Level.INFO.ordinal();
      trace = control.level.ordinal() <= Level.TRACE.ordinal();
      warn = control.level.ordinal() <= Level.WARN.ordinal();
      error = control.level.ordinal() <= Level.ERROR.ordinal();
View Full Code Here

TOP

Related Classes of osgi.enroute.logger.api.LoggerAdmin.Control

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.