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

org.apache.maven.wrapper.Logger Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
package org.apache.maven.wrapper;

/**
 * @author Konstantin Sobolev
 */
public class Logger {
  private static final boolean VERBOSE = "true".equalsIgnoreCase(System.getenv(MavenWrapperMain.MVNW_VERBOSE));

  public static void info(String msg) {
    if (VERBOSE) {
      System.out.println(msg);
    }
  }

  public static void warn(String msg) {
    System.out.println(msg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy