Skip to content

Commit

Permalink
Remove noisy logs in tablet move (#5333)
Browse files Browse the repository at this point in the history
  • Loading branch information
all-seeing-code authored Apr 29, 2020
1 parent 3c12533 commit 0cd1e4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dgraph/cmd/zero/raft.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 0cd1e4d

Please sign in to comment.