Merge pull request #13644 from grpc/verbose-cronet-on-failed

Verbose log message in on_failed in Cronet transport
pull/13396/head
Muxi Yan 7 years ago committed by GitHub
commit 650595ea15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/ext/transport/cronet/transport/cronet_transport.cc

@ -401,7 +401,7 @@ static void execute_from_storage(grpc_exec_ctx* exec_ctx, stream_obj* s) {
Cronet callback
*/
static void on_failed(bidirectional_stream* stream, int net_error) {
CRONET_LOG(GPR_DEBUG, "on_failed(%p, %d)", stream, net_error);
gpr_log(GPR_ERROR, "on_failed(%p, %d)", stream, net_error);
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
stream_obj* s = (stream_obj*)stream->annotation;

Loading…
Cancel
Save