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

com.maxleap.code.LogDelegate Maven / Gradle / Ivy

There is a newer version: 2.4.9
Show newest version
package com.maxleap.code;

/**
 * stream.
 */
public interface LogDelegate {

  void info(String message);

  void debug(String message);

  void warn(Object message);

  void warn(final Object message, final Throwable t);

  void error(final Object message);

  void error(final Object message, final Throwable t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy