[Commonizer] CLI: Report duration even if it's 0ms long

This commit is contained in:
Dmitriy Dolovov
2020-08-05 19:12:31 +07:00
parent 9ef727747b
commit 494fb39399
@@ -27,7 +27,7 @@ internal class ResettableClockMark {
if (hours > 0) append(hours).append("h ")
if (minutes > 0 || isNotEmpty()) append(minutes).append("m ")
if (seconds > 0 || isNotEmpty()) append(seconds).append("s ")
if (millis > 0 || isNotEmpty()) append(millis).append("ms")
append(millis).append("ms")
}
}
}