Package org.glassfish.contextpropagation.bootstrap

Examples of org.glassfish.contextpropagation.bootstrap.LoggerAdapter


      mutable = in.readBoolean();
    }
  }

  private static void error(MessageID messageID, Object... args) {
    LoggerAdapter logger = ContextBootstrap.getLoggerAdapter();
    if (logger.isLoggable(Level.ERROR)) {
      logger.log(Level.ERROR, messageID, args);
    }
  }
View Full Code Here


    }
  }

  @Override
  public LoggerAdapter getLoggerAdapter() {
    return new LoggerAdapter() {
      @Override
      public boolean isLoggable(Level level) {
        return true;
      }
View Full Code Here

TOP

Related Classes of org.glassfish.contextpropagation.bootstrap.LoggerAdapter

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.