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

de.saumya.mojo.ruby.Logger Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
/**
 * 
 */
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