Fix SampleStatistic.toString: mean dispay the max (#5962)
Signed-off-by: Nicolas Trangosi <nicolas.trangosi@dcbrain.com>
This commit is contained in:
parent
29d48b0de5
commit
358526be04
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue