Skip to content

Commit

Permalink
fix structured logging format
Browse files Browse the repository at this point in the history
  • Loading branch information
technicallyty committed Jan 11, 2025
1 parent bc42211 commit 8813640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/v2/api/grpcgateway/interceptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func createRegexMapping(logger log.Logger, annotationMapping map[string]string)
} else {
// TODO: eventually we want this to error, but there is currently a duplicate in the protobuf.
// see: https://github.com/cosmos/cosmos-sdk/issues/23281
logger.Warn("duplicate HTTP annotation found %q and %q. query will resolve to %q", annotation, otherAnnotation, queryInputName)
logger.Warn("duplicate HTTP annotation found", "annotation1", annotation, "annotation2", otherAnnotation, "query_input_name", queryInputName)
}
regexQueryMD[reg] = queryMetadata{
queryInputProtoName: queryInputName,
Expand Down

0 comments on commit 8813640

Please sign in to comment.