| |
|
| java.lang.Object com.jeta.forms.logger.FormsLogger
FormsLogger | public class FormsLogger (Code) | | This class is a helper class for logging messages in the application. This
class also initializes the logging API for the application
author: Jeff Tassin |
Method Summary | |
public static void | debug(String msg) | public static void | debug(Throwable t) Helper method that logs an exception. | public static void | fine(String msg) Helper method that sends a message to the logger. | public static void | severe(String msg) | public static void | severe(Throwable t) Forwards a severe log message to the application logger. |
LOGGER_NAME | final public static String LOGGER_NAME(Code) | | The name of our logger.
|
debug | public static void debug(String msg)(Code) | | Helper method that sends a message to the logger only when debugging
Parameters: msg - the message to send to the logger |
debug | public static void debug(Throwable t)(Code) | | Helper method that logs an exception.
Parameters: t - the Throwable whose message and stack trace we send to thelogger. |
fine | public static void fine(String msg)(Code) | | Helper method that sends a message to the logger.
Parameters: msg - the message that is sent to the logger. |
severe | public static void severe(String msg)(Code) | | Forwards a severe log message to the application logger
Parameters: msg - the message to send to the logger. |
severe | public static void severe(Throwable t)(Code) | | Forwards a severe log message to the application logger.
Parameters: t - the Throwable whose message and stack trace is sent to thelogger. |
|
|
|