aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/server.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-05-27 07:27:54 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-05-27 07:27:54 -0700
commit97b74ff276b64e61312076cec07a39d34cebd0ae (patch)
tree34481458a8e7471613f23ca3d1e38228f0e028ce /src/core/surface/server.c
parent5c19eb8ff6c378f368ac5b6e5db0633acb8a3ba5 (diff)
parentad7c20c833695f77feb6261723bfb639fbe6fd22 (diff)
Merge pull request #1732 from murgatroid99/core_request_call_trace
Added tracing for grpc_server_request_call
Diffstat (limited to 'src/core/surface/server.c')
-rw-r--r--src/core/surface/server.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/surface/server.c b/src/core/surface/server.c
index 24a23ae5c4..e99e3e2b04 100644
--- a/src/core/surface/server.c
+++ b/src/core/surface/server.c
@@ -1010,6 +1010,9 @@ grpc_call_error grpc_server_request_call(
grpc_completion_queue *cq_bound_to_call,
grpc_completion_queue *cq_for_notification, void *tag) {
requested_call rc;
+ GRPC_SERVER_LOG_REQUEST_CALL(GPR_INFO, server, call, details,
+ initial_metadata, cq_bound_to_call,
+ cq_for_notification, tag);
grpc_cq_begin_op(cq_for_notification, NULL);
rc.type = BATCH_CALL;
rc.tag = tag;