| com.salmonllc.util.Logger
All known Subclasses: com.salmonllc.util.LoggerJDK, com.salmonllc.util.LoggerLog4J,
Logger | public interface Logger (Code) | | Interface used by the message log to write messages to different logging packages, like JDK 1.4 logging and Log4J
|
TYPE_ASSERTION | final public static int TYPE_ASSERTION(Code) | | |
TYPE_DEBUG | final public static int TYPE_DEBUG(Code) | | |
TYPE_ERROR | final public static int TYPE_ERROR(Code) | | |
TYPE_INFO | final public static int TYPE_INFO(Code) | | |
TYPE_SQL | final public static int TYPE_SQL(Code) | | |
log | public void log(String message, int type, int level, Throwable e, Object o)(Code) | | Log a message to the appropriate message logging package
Parameters: message - The message to log Parameters: type - The type, see TYPE constants at the top of the page Parameters: level - The error level Parameters: e - an error message Parameters: o - the object logging the message |
|
|