Skip to content

Commit e3dfaba

Browse files
committed
Add newline to System.out log
1 parent def0664 commit e3dfaba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/main/java/com/v1ct04/benchstack/driver/Benchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ private double complianceScore(long baseWaitTime, TimeUnit unit) throws Interrup
303303

304304
private static void logInfoAndStdOut(String format, Object... args) {
305305
String msg = String.format(format, args);
306-
System.out.format("[%s] %s", new Date(), msg);
306+
System.out.format("[%s] %s\n", new Date(), msg);
307307
LOGGER.info(msg);
308308
}
309309

0 commit comments

Comments
 (0)