@param msg Message format. @param args Message arguments.
(String msg, Object... args)
| 71 | * Message arguments. |
| 72 | */ |
| 73 | public static void debug(String msg, Object... args) { |
| 74 | String msgCmp = compile(msg,args); |
| 75 | appLogger.debug(msgCmp); |
| 76 | fileLogger.debug(msgCmp); |
| 77 | debugConsumers.forEach(c -> c.accept(msgCmp)); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * @param msg |
no test coverage detected