client-java
client-java copied to clipboard
fix prewrite & commit log info to debug
Bug Report
1. Describe the bug
TwoPhaseCommit prewrite 、commit log use info level
2. Minimal reproduce step (Required)
3. What did you see instead (Required)
LOG.info(
"start commit secondary key, row={}, size={}KB, regionId={}",
batchKeys.getKeys().size(),
batchKeys.getSizeInKB(),
batchKeys.getRegion().getId());
4. What did you expect to see? (Required)
if (LOG.isDebugEnabled()) {
LOG.debug(
"start commit secondary key, row={}, size={}KB, regionId={}",
batchKeys.getKeys().size(),
batchKeys.getSizeInKB(),
batchKeys.getRegion().getId());
}
5. What are your Java Client and TiKV versions? (Required)
- Client Java: 3.3.5
- TiKV: 7.5.0