(String format, Object... args)
| 29 | } |
| 30 | |
| 31 | public static void log(String format, Object... args) throws IllegalFormatException { |
| 32 | LocalDateTime now = LocalDateTime.now(); |
| 33 | String ns = dtf.format(now); |
| 34 | String ss = ns + " " + String.format(format, args); |
| 35 | System.out.println(ss); |
| 36 | guiLog.append(ss); |
| 37 | } |
| 38 | |
| 39 | public static void err(String format, Object... args) throws IllegalFormatException { |
| 40 | LocalDateTime now = LocalDateTime.now(); |