diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-05-28 07:36:07 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-05-28 07:36:07 -0700 |
commit | d1369aa134e8eaab1bde6a5ea36a8ba655c79a57 (patch) | |
tree | c1cdc85da9e4a01371edee5dcb99a6069f0c5be8 /src/core/surface/call_log_batch.c | |
parent | fe46136721acc3298a2949a7321d043180daed92 (diff) | |
parent | a3c9fb08136d6a3875b8e400ef4b4137357d6b4a (diff) |
Merge github.com:grpc/grpc into scalable-poll
Diffstat (limited to 'src/core/surface/call_log_batch.c')
-rw-r--r-- | src/core/surface/call_log_batch.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/surface/call_log_batch.c b/src/core/surface/call_log_batch.c index e3b3f75b45..9905401bee 100644 --- a/src/core/surface/call_log_batch.c +++ b/src/core/surface/call_log_batch.c @@ -119,3 +119,19 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity, gpr_free(tmp); } } + +void grpc_server_log_request_call(char *file, int line, + gpr_log_severity severity, + grpc_server *server, + grpc_call **call, + grpc_call_details *details, + grpc_metadata_array *initial_metadata, + grpc_completion_queue *cq_bound_to_call, + grpc_completion_queue *cq_for_notification, + void *tag) { + gpr_log(file, line, severity, + "grpc_server_request_call(server=%p, call=%p, details=%p, " + "initial_metadata=%p, cq_bound_to_call=%p, cq_for_notification=%p, " + "tag=%p)", server, call, details, initial_metadata, + cq_bound_to_call, cq_for_notification, tag); +} |