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

io.pyroscope.javaagent.api.Logger Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.pyroscope.javaagent.api;

public interface Logger {
    enum Level {
        DEBUG(0),
        INFO(1),
        WARN(2),
        ERROR(3);
        public final int level;

        Level(int level) {
            this.level = level;
        }
    }

    void log(Level l, String msg, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy