de.saumya.mojo.ruby.Logger Maven / Gradle / Ivy
/**
*
*/
package de.saumya.mojo.ruby;
public interface Logger {
/**
* Send a message to the user in the debug level.
*
* @param content
*/
void debug(CharSequence content);
/**
* Send a message to the user in the info level.
*
* @param content
*/
void info(CharSequence content);
/**
* Send a message to the user in the warn level.
*
* @param string
*/
void warn(CharSequence string);
/**
* Send a message to the user in the error level.
*
* @param string
*/
void error(CharSequence string);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy