(String message, Object... args)
| 341 | |
| 342 | |
| 343 | static public void logf(String message, Object... args) { |
| 344 | if (Base.DEBUG) { |
| 345 | System.out.println(String.format(message, args)); |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | |
| 350 | static public void loge(String message, Throwable e) { |