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

org.snapscript.studio.agent.log.ProcessLogger Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy