[log](chore) print isBad in Replica::toString() (#33427)

This commit is contained in:
zhannngchen
2024-04-09 23:15:12 +08:00
committed by yiguolei
parent b5a84f7d23
commit ff38e7c497

View File

@ -595,6 +595,8 @@ public class Replica implements Writable {
strBuffer.append(schemaHash);
strBuffer.append(", state=");
strBuffer.append(state.name());
strBuffer.append(", isBad=");
strBuffer.append(isBad());
strBuffer.append("]");
return strBuffer.toString();
}