Missing newline in report.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6091 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2010-07-02 13:32:49 +00:00
parent 4ddc60e369
commit 46835601af
@@ -112,7 +112,7 @@ public class ReportingInvoker extends Invoker
synchronized (this) {
Stats stats = getStats(reset);
buf.append("- Max queue size: ").append(stats.maxQueueSize).append("\n");
buf.append("- Units executed: ").append(stats.unitsRun);
buf.append("- Units executed: ").append(stats.unitsRun).append("\n");
buf.append("- Total units executed: ").append(_totalUnitsRun);
long runPerSec = stats.unitsRun/Math.max(1, sinceLast/1000);
buf.append(" (").append(runPerSec).append("/s)\n");