fixed issue #2257 , time 100 parse bugfix

This commit is contained in:
agapple
2019-10-09 13:39:22 +08:00
parent 4af3b24b69
commit 7d91850be6
@@ -756,7 +756,7 @@ public final class RowsLogBuffer {
}
int d = (int) ((intpart >> 12) % (1 << 10));
if (d > 100) {
if (d >= 100) {
builder.append(String.valueOf(d));
} else {
appendNumber2(builder, d);