Method Summary |
|
public void | end() Turns all levels of logging off. |
public void | end(String message) Logs the given messague using default logging level, then turns all levels of logging off. |
public int | getDefaultLevel() Returns the default severity level to use if none (or invalid) is specified in a log call. |
public boolean | isStarted() Returns True if the system is currently turned on. |
public void | log(int severityLevel, Object anObject) Log the given object using the given severity level. |
public void | log(int severityLevel, String message) Log the given message using the given severity level. |
public void | log(Object anObject) Log the given object using the default severity level. |
public void | log(String message) Log the given message using the default severity level. |
public void | setDefaultLevel(int severityLevel) Set the default severity level to be used when a severity level is unspecified, or invalid. |
public void | start() Turns on logging. |
public void | start(String message) Turns on logging, then logs the given message using default logging level. |