Interface MessageWriter
-
public interface MessageWriter
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static MessageWriterdebug()static MessageWriterdebug(PrintStream out)voiddebug(String msg)default voiddebug(String format, Object... args)voiderror(String msg)default voiderror(String format, Object... args)static MessageWriterinfo()static MessageWriterinfo(PrintStream out)voidinfo(String msg)default voidinfo(String format, Object... args)booleanisDebugEnabled()voidwarn(String msg)default voidwarn(String format, Object... args)
-
-
-
Method Detail
-
info
static MessageWriter info()
-
info
static MessageWriter info(PrintStream out)
-
debug
static MessageWriter debug()
-
debug
static MessageWriter debug(PrintStream out)
-
info
void info(String msg)
-
error
void error(String msg)
-
isDebugEnabled
boolean isDebugEnabled()
-
debug
void debug(String msg)
-
warn
void warn(String msg)
-
-