raft: Format node IDs as hex in DescribeMessage.

This is how they are printed in all other log messages.
This commit is contained in:
Ben Darnell 2015-05-20 15:32:56 -04:00
parent 260aad5468
commit ef721db247

View File

@ -62,7 +62,7 @@ type EntryFormatter func([]byte) string
// Message for debugging.
func DescribeMessage(m pb.Message, f EntryFormatter) string {
var buf bytes.Buffer
fmt.Fprintf(&buf, "%d->%d %s Term:%d Log:%d/%d", m.From, m.To, m.Type, m.Term, m.LogTerm, m.Index)
fmt.Fprintf(&buf, "%x->%x %s Term:%d Log:%d/%d", m.From, m.To, m.Type, m.Term, m.LogTerm, m.Index)
if m.Reject {
fmt.Fprintf(&buf, " Rejected")
}