Same here even though we were doing long arithmetic which would most likely

avoid blowage.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5750 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2009-04-27 22:18:50 +00:00
parent 7e777e9c72
commit 73dd5beda4
@@ -83,7 +83,7 @@ public class ReportingInvoker extends Invoker
synchronized (this) {
buf.append("- Max queue size: ").append(_maxQueueSize).append("\n");
buf.append("- Units executed: ").append(_unitsRun);
long runPerSec = (sinceLast == 0) ? 0 : 1000l*_unitsRun/sinceLast;
long runPerSec = (sinceLast == 0) ? 0 : _unitsRun/(sinceLast/1000);
buf.append(" (").append(runPerSec).append("/s)\n");
if (_currentUnit != null) {
String uname = StringUtil.safeToString(_currentUnit);