(String module)
| 105 | } |
| 106 | |
| 107 | public static org.apache.logging.log4j.Logger getLogger(String module) { |
| 108 | if (module != null && module.length() > 0) { |
| 109 | return LogManager.getLogger(module); |
| 110 | } else { |
| 111 | return LogManager.getLogger(Debug.class); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | public static void log(int level, Throwable t, String msg, String module) { |
| 116 | if (msg == null) |
no outgoing calls
no test coverage detected