aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authororwell96 <orwell@bleipb.de>2019-12-07 09:15:06 +0100
committerorwell96 <orwell@bleipb.de>2019-12-07 09:15:06 +0100
commitf21b5aedd58b0b5a094b5055af1138c302f0801d (patch)
tree1d1b01887d38cb1ba7b276b612668d547ea4900e
parent5fee51a150d5491546495a906b94deddd3e1b917 (diff)
downloadadvprofiler-master.tar.gz
advprofiler-master.tar.bz2
advprofiler-master.zip
Revert change to report functionHEADmaster
-rw-r--r--init.lua11
1 files changed, 9 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index d137ecf..a97ebc9 100644
--- a/init.lua
+++ b/init.lua
@@ -250,9 +250,16 @@ function advprofiler.get_report_columns(rep)
}
end
+local function t1000(t)
+ return t and t*1000 or 0
+end
+
function advprofiler.report(rep)
- local colt = advprofiler.get_report_columns(rep)
- return table.concat(colt, "\t")
+ return string.format("Count avg=%d\tmax=%d\ttotal=%d\tTime avg=%dms\tmax=%dms\ttotal=%dms\tPer-Call avg=%dms\tmax=%dms",
+ rep.count_avg, rep.count_max, rep.count_tot,
+ t1000(rep.time_avg), t1000(rep.time_max), t1000(rep.time_tot),
+ t1000(rep.per_call_avg), t1000(rep.per_call_max))
+
end