diff --git a/dgraph/cmd/zero/raft.go b/dgraph/cmd/zero/raft.go index a2a1672176a..6e9bd069679 100644 --- a/dgraph/cmd/zero/raft.go +++ b/dgraph/cmd/zero/raft.go @@ -348,8 +348,8 @@ func (n *node) applyProposal(e raftpb.Entry) (string, error) { } if p.Tablet != nil { if err := n.handleTabletProposal(p.Tablet); err != nil { - span.Annotatef(nil, "While applying tablet proposal: %+v", err) - glog.Errorf("While applying tablet proposal: %+v", err) + span.Annotatef(nil, "While applying tablet proposal: %v", err) + glog.Errorf("While applying tablet proposal: %v", err) return p.Key, err } }