mirror of https://github.com/apache/kafka.git
MINOR: Add missing log argument (#10262)
Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
6b432e48ba
commit
a1fb80ffe2
|
@ -139,7 +139,7 @@ public final class LocalLogManager implements MetaLogManager, AutoCloseable {
|
|||
}
|
||||
if (nodeId != leader.nodeId()) {
|
||||
log.trace("tryAppend(nodeId={}, epoch={}): the given node id does not " +
|
||||
"match the current leader id of {}.", nodeId, leader.nodeId());
|
||||
"match the current leader id of {}.", nodeId, epoch, leader.nodeId());
|
||||
return Long.MAX_VALUE;
|
||||
}
|
||||
log.trace("tryAppend(nodeId={}): appending {}.", nodeId, batch);
|
||||
|
|
Loading…
Reference in New Issue