| java.lang.Object org.ofbiz.base.util.Debug
Method Summary | |
public static boolean | errorOn() | public static boolean | fatalOn() | public static Integer | getLevelFromString(String levelName) | public static int | getLevelFromStringWithDefault(String levelName) | public static Logger | getLogger(String module) | public static PrintStream | getPrintStream() | public static PrintWriter | getPrintWriter() | public static boolean | importantOn() | public static boolean | infoOn() | public static boolean | isOn(int level) | public static void | log(int level, Throwable t, String msg, String module) | public static void | log(int level, Throwable t, String msg, String module, String callingClass) | public static void | log(String msg) | public static void | log(Throwable t) | public static void | log(String msg, String module) | public static void | log(Throwable t, String module) | public static void | log(Throwable t, String msg, String module) | public static void | logError(String msg, String module) | public static void | logError(Throwable t, String module) | public static void | logError(Throwable t, String msg, String module) | public static void | logFatal(String msg, String module) | public static void | logFatal(Throwable t, String module) | public static void | logFatal(Throwable t, String msg, String module) | public static void | logImportant(String msg, String module) | public static void | logImportant(Throwable t, String module) | public static void | logImportant(Throwable t, String msg, String module) | public static void | logInfo(String msg, String module) | public static void | logInfo(Throwable t, String module) | public static void | logInfo(Throwable t, String msg, String module) | public static void | logTiming(String msg, String module) | public static void | logTiming(Throwable t, String module) | public static void | logTiming(Throwable t, String msg, String module) | public static void | logVerbose(String msg, String module) | public static void | logVerbose(Throwable t, String module) | public static void | logVerbose(Throwable t, String msg, String module) | public static void | logWarning(String msg, String module) | public static void | logWarning(Throwable t, String module) | public static void | logWarning(Throwable t, String msg, String module) | public static void | set(int level, boolean on) | public static void | setPrintStream(PrintStream printStream) | public static boolean | timingOn() | public static boolean | verboseOn() | public static boolean | warningOn() |
ALWAYS | final public static int ALWAYS(Code) | | |
ERROR | final public static int ERROR(Code) | | |
FATAL | final public static int FATAL(Code) | | |
IMPORTANT | final public static int IMPORTANT(Code) | | |
INFO | final public static int INFO(Code) | | |
TIMING | final public static int TIMING(Code) | | |
VERBOSE | final public static int VERBOSE(Code) | | |
WARNING | final public static int WARNING(Code) | | |
levelObjs | final public static Level[] levelObjs(Code) | | |
levelOnCache | protected static boolean levelOnCache(Code) | | |
levelStringMap | protected static Map levelStringMap(Code) | | |
noModuleModule | final public static String noModuleModule(Code) | | |
root | protected static Logger root(Code) | | |
useLevelOnCache | final protected static boolean useLevelOnCache(Code) | | |
useLog4J | final public static boolean useLog4J(Code) | | |
errorOn | public static boolean errorOn()(Code) | | |
fatalOn | public static boolean fatalOn()(Code) | | |
getLevelFromString | public static Integer getLevelFromString(String levelName)(Code) | | Gets an Integer representing the level number from a String representing the level name; will return null if not found
|
getLevelFromStringWithDefault | public static int getLevelFromStringWithDefault(String levelName)(Code) | | Gets an int representing the level number from a String representing the level name; if level not found defaults to Debug.INFO
|
getLogger | public static Logger getLogger(String module)(Code) | | |
importantOn | public static boolean importantOn()(Code) | | |
infoOn | public static boolean infoOn()(Code) | | |
isOn | public static boolean isOn(int level)(Code) | | |
set | public static void set(int level, boolean on)(Code) | | |
timingOn | public static boolean timingOn()(Code) | | |
verboseOn | public static boolean verboseOn()(Code) | | |
warningOn | public static boolean warningOn()(Code) | | |
|
|