Skip to content

Commit

Permalink
fix: reduce log level for grpc claims
Browse files Browse the repository at this point in the history
  • Loading branch information
tooptoop4 committed Jul 2, 2022
1 parent c1d8173 commit a2a6c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/grpc/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func logRequest(entry *logrus.Entry, info string, pbMsg interface{}, ctx context
if p, ok := pbMsg.(proto.Message); ok {
entry = entry.WithField("grpc.request.content", &jsonpbMarshalleble{p})
}
entry.Info(info)
entry.Debug(info)
}

type jsonpbMarshalleble struct {
Expand Down

0 comments on commit a2a6c6c

Please sign in to comment.