Package org.sonar.core.profiling.Profiling

Examples of org.sonar.core.profiling.Profiling.Level


  public JRubyProfiling(Profiling profiling) {
    this.profiling = profiling;
  }

  public StopWatch start(String domain, String level) {
    Level profilingLevel = Level.NONE;
    try {
      profilingLevel = Level.valueOf(level);
    } catch (IllegalArgumentException iae) {
      LOG.warn("Unknown profiling level, defaulting to NONE: " + level, iae);
    }
View Full Code Here

TOP

Related Classes of org.sonar.core.profiling.Profiling.Level

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.