(String[] args)
| 14 | public static boolean verbose = false; |
| 15 | |
| 16 | public static void main(String[] args) throws Exception { |
| 17 | verbose = Arrays.stream(args).anyMatch("--verbose"::equals); |
| 18 | new Main().run(); |
| 19 | } |
| 20 | |
| 21 | public static void log(Object... msg) { |
| 22 | if (verbose) |