diff --git a/raft/node.go b/raft/node.go index 46ea6db9a7e..078a043b875 100644 --- a/raft/node.go +++ b/raft/node.go @@ -409,7 +409,7 @@ func (n *node) Tick() { case n.tickc <- struct{}{}: case <-n.done: default: - n.rn.raft.logger.Warningf("%x (leader %v) A tick missed to fire. Node blocks too long!", n.rn.raft.id, n.rn.raft.id == n.rn.raft.lead) + n.rn.raft.logger.Warningf("%x A tick missed to fire. Node blocks too long!", n.rn.raft.id) } }