@param msg Message format. @param args Message arguments.
(String msg, Object... args)
| 84 | * Message arguments. |
| 85 | */ |
| 86 | public static void info(String msg, Object... args) { |
| 87 | String msgCmp = compile(msg,args); |
| 88 | appLogger.info(msgCmp); |
| 89 | fileLogger.info(msgCmp); |
| 90 | infoConsumers.forEach(c -> c.accept(msgCmp)); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * @param msg |
no test coverage detected