All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.dreampie.LogKit Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package cn.dreampie;

import org.apache.maven.plugin.logging.Log;
import org.apache.maven.plugin.logging.SystemStreamLog;

/**
 * Created by ice on 14-11-17.
 */
public class LogKit {
  private static Log log;


  public static void setLog(Log log) {
    LogKit.log = log;
  }

  public static Log getLog() {
    if (log == null) {
      log = new SystemStreamLog();
    }

    return log;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy