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

io.qase.commons.logger.Logger Maven / Gradle / Ivy

The newest version!
package io.qase.commons.logger;

public class Logger {
    public static void info(String message, Object... argArray) {
        System.out.println(message);
    }

    public static void error(String message, Throwable e) {
        System.err.println(message);
    }

    public static void debug(String message) {
        System.out.println(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy