(int level, Throwable t, String msg, String module)
| 113 | } |
| 114 | |
| 115 | public static void log(int level, Throwable t, String msg, String module) { |
| 116 | if (msg == null) |
| 117 | msg = "[jdonframework]"; |
| 118 | log(level, t, msg, module, "com.jdon.util.Debug"); |
| 119 | } |
| 120 | |
| 121 | private static void log(int level, Throwable t, String msg, String module, String callingClass) { |
| 122 | if (level < conf_level) |
no test coverage detected