Package org.platformlayer.ops.log

Examples of org.platformlayer.ops.log.JobLogger


  private void enterLogScope(Object controller) {
    OpsContext opsContext = OpsContext.get();

    if (opsContext != null) {
      JobLogger jobLogger = opsContext.getJobLogger();
      jobLogger.enterScope(controller);
    }
  }
View Full Code Here


  private void exitLogScope() {
    OpsContext opsContext = OpsContext.get();

    if (opsContext != null) {
      JobLogger jobLogger = opsContext.getJobLogger();
      jobLogger.exitScope();
    }
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.log.JobLogger

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.