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

org.jfrog.build.api.util.NullLog Maven / Gradle / Ivy

There is a newer version: 2.41.23
Show newest version
package org.jfrog.build.api.util;

/**
 * A log implementation that doesn't do anything
 *
 * @author Noam Y. Tenne
 */
public class NullLog implements Log {

    public void debug(String message) {
        //nop
    }

    public void info(String message) {
        //nop
    }

    public void warn(String message) {
        //nop
    }

    public void error(String message) {
        //nop
    }

    public void error(String message, Throwable e) {
        //nop
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy