diff options
author | Muxi Yan <muxi@users.noreply.github.com> | 2017-12-05 11:04:36 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-05 11:04:36 -0800 |
commit | 9a4db28783b25e0cbe2ac86ac344b1ffa4e3db37 (patch) | |
tree | b101cb887f59df642a185f5c34956a650cee4838 /src | |
parent | 96311af518789adb7743bf63f735087680d460f9 (diff) |
Verbose log message in on_failed in Cronet transport
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/cronet/transport/cronet_transport.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/cronet/transport/cronet_transport.cc b/src/core/ext/transport/cronet/transport/cronet_transport.cc index 4d24efe47b..4e16032da0 100644 --- a/src/core/ext/transport/cronet/transport/cronet_transport.cc +++ b/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_INFO, "on_failed(%p, %d)", stream, net_error); grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; stream_obj* s = (stream_obj*)stream->annotation; |