org.snapscript.studio.agent.log.ProcessLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.studio.agent.log;
public interface ProcessLogger {
String getLevel();
boolean isTrace();
boolean isDebug();
void trace(String message);
void trace(String message, Throwable cause);
void debug(String message);
void debug(String message, Throwable cause);
void info(String message);
void info(String message, Throwable cause);
}