Skip to content

Commit

Permalink
MINOR: Missing space in ProducerStateManager LogContext (apache#14275)
Browse files Browse the repository at this point in the history
Reviewers: Divij Vaidya <[email protected]>
  • Loading branch information
mimaison authored Aug 25, 2023
1 parent c9715a3 commit 30de2bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public ProducerStateManager(TopicPartition topicPartition, File logDir, int maxT
this.maxTransactionTimeoutMs = maxTransactionTimeoutMs;
this.producerStateManagerConfig = producerStateManagerConfig;
this.time = time;
log = new LogContext("[ProducerStateManager partition=" + topicPartition + "]").logger(ProducerStateManager.class);
log = new LogContext("[ProducerStateManager partition=" + topicPartition + "] ").logger(ProducerStateManager.class);
snapshots = loadSnapshots();
}

Expand Down

0 comments on commit 30de2bb

Please sign in to comment.