fix Messages.logf()

This commit is contained in:
Ben Fry
2021-08-03 20:47:14 -04:00
parent 0419b1ffb2
commit b50f5d8c8f
+1 -1
View File
@@ -328,7 +328,7 @@ public class Messages {
static public void logf(String message, Object... args) {
if (Base.DEBUG) {
System.out.println(String.format(message, args));
System.out.printf(message, args);
}
}