mirror of https://github.com/apache/kafka.git
MINOR: improve logging for state management (#15045)
Increase log level to INFO similar to other log statement in this class, to surface important information on the non-critical code path. Reviewers: Lucas Brutschy <lbrutschy@confluent.io>
This commit is contained in:
parent
810f63b5b6
commit
c078e51c8f
|
@ -270,7 +270,7 @@ public class ProcessorStateManager implements StateManager {
|
|||
final Long offset = changelogOffsetFromCheckpointedOffset(loadedCheckpoints.remove(store.changelogPartition));
|
||||
store.setOffset(offset);
|
||||
|
||||
log.debug("State store {} initialized from checkpoint with offset {} at changelog {}",
|
||||
log.info("State store {} initialized from checkpoint with offset {} at changelog {}",
|
||||
store.stateStore.name(), store.offset, store.changelogPartition);
|
||||
} else {
|
||||
// with EOS, if the previous run did not shutdown gracefully, we may lost the checkpoint file
|
||||
|
|
Loading…
Reference in New Issue