When using the code-first method with protobuf-net.Grpc.AspNetCore, I see the following messages:
[15:13:07 INF] [HTTP] Starting grpc server...
[15:13:07 DBG] Could not find bind method for App.Services.TestService.
[15:13:08 INF] RPC services being provided by App.Services.TestService: 3
I'm not sure if the "Could not find bind method" debug message indicates a problem or not. It occurs when the statement endpoints.MapGrpcService<TestService>(); is run.
The service methods all appear to work as intended when called. Should I be concerned about this message?