C++ test cases between grpc 1.0.0 client and grpc 1.38.1 server.
gRPC client log code pieces:
if (status.ok())
{
...
}
else
{
std::cout << status.error_code() << ": " << status.error_message() << std::endl;
The logs show as follow:
"14:"
Nothing else.
The test run a couple of hours and got more than 10 erro_code "14:", but did not get any error_message.
How to figure out what is the issue? any suggestion? Thank you very much!