Skip to content

Commit

Permalink
improve err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Jan 11, 2025
1 parent 215e438 commit ca2e802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/v2/api/grpc/gogoreflection/serverreflection.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ func (s *serverReflectionServer) getServices(messages []string) (svcs []string,

svc, ok := findServiceForMessage(registry, md.(protoreflect.MessageDescriptor))
if !ok {
s.log.Error("unable to find service for message", "message", messageName)
s.log.Warn(fmt.Sprintf("unable to find service for message %s", messageName))
continue
}

Expand Down

0 comments on commit ca2e802

Please sign in to comment.