فهرست منبع

rafttest: fix build error

raftLogger is not exported so we can't access it from here. Go back to
using log.
Iago López Galeiras 11 سال پیش
والد
کامیت
e698192e4a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      raft/rafttest/node.go

+ 1 - 1
raft/rafttest/node.go

@@ -59,7 +59,7 @@ func (n *node) start() {
 				n.Step(context.TODO(), m)
 			case <-n.stopc:
 				n.Stop()
-				raftLogger.Infof("raft.%d: stop", n.id)
+				log.Printf("raft.%d: stop", n.id)
 				n.Node = nil
 				close(n.stopc)
 				return