Fix typo in Profiler -- enable to trace parent site frequencies.

This commit is contained in:
Fedor Isakov 2020-06-03 15:41:42 +02:00
parent 18933cfcf2
commit 202b83b984
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Profiler {
sb.append("\n -- ${parentName}")
.append(" time %1\$Ts.%1\$TLs".format(millis(dur)))
.append(" (%1\$d times)".format(data.parentFreqs[name] ?: 0)) }
.append(" (%1\$d times)".format(data.parentFreqs[parentName] ?: 0)) }
name to sb.toString()
}.toMap()