public interface MessageLogger
Where the messages are logged is depending on the implementation.
void debug(String msg)
void error(String msg)
void info(String msg)
void log(String msg, int level)
level constants are defined in the Message class.
msg - the message to loglevel - the level at which the message should be logged.Message.MSG_DEBUG,
Message.MSG_VERBOSE,
Message.MSG_INFO,
Message.MSG_WARN,
Message.MSG_ERRvoid verbose(String msg)
void warn(String msg)