com.prolixtech.utils

Interface MboxLogger

Known Implementing Classes:
JavaLogger, NullLogger, SingletonLogger

public interface MboxLogger

Method Summary

void
baloon(String msg, String title)
void
disableBaloons()
void
exception(Level x, String msg, Exception e)
void
exception(String msg, Exception e)
void
fine(String msg)
void
http(Request req, String msg)
Specialized submit for HTTP messages
void
info(String msg)
Shortcut to submit a log message at the level INFO
void
log(Level vel, String msg)
The main logging function is set by default to output to the console.
void
severe(String msg)
Shortcut to submit a log message at the level SEVERE
void
sql(String msg)
void
warning(String msg)
Shortcut to submit a log message at the level WARNING

Method Details

baloon

public void baloon(String msg,
                   String title)

disableBaloons

public void disableBaloons()

exception

public void exception(Level x,
                      String msg,
                      Exception e)

exception

public void exception(String msg,
                      Exception e)

fine

public void fine(String msg)

http

public void http(Request req,
                 String msg)
Specialized submit for HTTP messages
Parameters:
msg - the message to submit

info

public void info(String msg)
Shortcut to submit a log message at the level INFO
Parameters:
msg - the message to submit

log

public void log(Level vel,
                String msg)
The main logging function is set by default to output to the console. If we require better logging in the future, perhaps a number of streams will be made. The default operation prints the last function called (gets it through a stacktrace) the message, the time.
Parameters:
vel - the level of the message to log.
msg - the message to log.
See Also:
java.util.logging.Level

severe

public void severe(String msg)
Shortcut to submit a log message at the level SEVERE
Parameters:
msg - the message to submit

sql

public void sql(String msg)

warning

public void warning(String msg)
Shortcut to submit a log message at the level WARNING
Parameters:
msg - the message to submit