blob: 8205236b2b69fcd807136a3fd424f6c89b8be6de [file] [log] [blame]
package org.jetbrains.maven.embedder;
/**
* @author Sergey.Anchipolevsky
* Date: 27.01.2010
*/
public interface MavenEmbedderLogger {
void debug(CharSequence msg);
void debug(CharSequence msg, Throwable e);
void debug(Throwable e);
void info(CharSequence msg);
void info(CharSequence msg, Throwable e);
void info(Throwable e);
void warn(CharSequence msg);
void warn(CharSequence msg, Throwable e);
void warn(Throwable e);
void error(CharSequence msg);
void error(CharSequence msg, Throwable e);
void error(Throwable e);
}