mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix Messages.logf()
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user