Package org.sonar.home.log

Examples of org.sonar.home.log.Slf4jLog


  private FileCache cache;

  public FileCache provide(Settings settings) {
    if (cache == null) {
      String home = settings.getString("sonar.userHome");
      cache = new FileCacheBuilder().setLog(new Slf4jLog(FileCache.class)).setUserHome(home).build();
    }
    return cache;
  }
View Full Code Here

TOP

Related Classes of org.sonar.home.log.Slf4jLog

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.