| java.lang.Object xdoclet.modules.ojb.LogHelper
Method Summary | |
public static void | debug(boolean alsoStdout, Class clazz, String posInfo, Object msg) Logs the given debug message to stdout (if verbose is on) and to the log for the given class
(if the log level has been set to debug or higher).
Parameters: alsoStdout - Whether to also put the message to stdout Parameters: clazz - The clazz Parameters: posInfo - The position info, e.g. | public static void | warn(boolean alsoStdout, Class clazz, String posInfo, Object msg) Logs the given warning to stdout and to the log for the given class
(if the log level has been set to warn or higher).
Parameters: alsoStdout - Whether to also put the message to stdout Parameters: clazz - The clazz Parameters: posInfo - The position info, e.g. |
debug | public static void debug(boolean alsoStdout, Class clazz, String posInfo, Object msg)(Code) | | Logs the given debug message to stdout (if verbose is on) and to the log for the given class
(if the log level has been set to debug or higher).
Parameters: alsoStdout - Whether to also put the message to stdout Parameters: clazz - The clazz Parameters: posInfo - The position info, e.g. method name Parameters: msg - The message |
warn | public static void warn(boolean alsoStdout, Class clazz, String posInfo, Object msg)(Code) | | Logs the given warning to stdout and to the log for the given class
(if the log level has been set to warn or higher).
Parameters: alsoStdout - Whether to also put the message to stdout Parameters: clazz - The clazz Parameters: posInfo - The position info, e.g. method name Parameters: msg - The message |
|
|