aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-09-04 16:26:14 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-09-04 19:19:01 -0700
commitdd95194a086b81966fd94726c04f53d279e247d8 (patch)
tree1cc3c23398230a9a6fdc44fda05540965f331ea1 /src/core/ext
parenta1f5c0942d1656ac16f7f385989c402d3b4074a0 (diff)
Prefer grpc status over http status
test
Diffstat (limited to 'src/core/ext')
-rw-r--r--src/core/ext/transport/chttp2/transport/parsing.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/ext/transport/chttp2/transport/parsing.cc b/src/core/ext/transport/chttp2/transport/parsing.cc
index 1e491d2ef8..205fb8c370 100644
--- a/src/core/ext/transport/chttp2/transport/parsing.cc
+++ b/src/core/ext/transport/chttp2/transport/parsing.cc
@@ -393,6 +393,7 @@ error_handler:
static void free_timeout(void* p) { gpr_free(p); }
static void on_initial_header(void* tp, grpc_mdelem md) {
+ gpr_log(GPR_INFO, "on initial header");
GPR_TIMER_SCOPE("on_initial_header", 0);
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);
@@ -475,6 +476,7 @@ static void on_initial_header(void* tp, grpc_mdelem md) {
}
static void on_trailing_header(void* tp, grpc_mdelem md) {
+ gpr_log(GPR_INFO, "on_trailing_header");
GPR_TIMER_SCOPE("on_trailing_header", 0);
grpc_chttp2_transport* t = static_cast<grpc_chttp2_transport*>(tp);