Fix SampleStatistic.toString: mean dispay the max (#5962)

Signed-off-by: Nicolas Trangosi <nicolas.trangosi@dcbrain.com>
This commit is contained in:
Nicolas 2021-02-12 05:32:54 +01:00 committed by GitHub
parent 29d48b0de5
commit 358526be04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,6 +119,6 @@ public class SampleStatistic
@Override
public String toString()
{
return String.format("%s@%x{count=%d,mean=%d,total=%d,stddev=%f}", getClass().getSimpleName(), hashCode(), getCount(), getMax(), getTotal(), getStdDev());
return String.format("%s@%x{count=%d,max=%d,mean=%f,total=%d,stddev=%f}", getClass().getSimpleName(), hashCode(), getCount(), getMax(), getMean(), getTotal(), getStdDev());
}
}