aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-30 16:04:44 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-30 16:04:44 -0700
commit532cd4d73d6de1db829c78268bc3fc9d18f92361 (patch)
treec856ba49e3f9110c01134548dc5b8db0bf7f7322
parent0420d7cb63622464f1a2ee76122d7116decdd23c (diff)
added param names for grpc_call_start_batch trace.
-rw-r--r--src/core/surface/call_log_batch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/surface/call_log_batch.c b/src/core/surface/call_log_batch.c
index 6f66e8463f..e3b3f75b45 100644
--- a/src/core/surface/call_log_batch.c
+++ b/src/core/surface/call_log_batch.c
@@ -112,7 +112,7 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
char *tmp;
size_t i;
gpr_log(file, line, severity,
- "grpc_call_start_batch(%p, %p, %d, %p)", call, ops, nops, tag);
+ "grpc_call_start_batch(call=%p, ops=%p, nops=%d, tag=%p)", call, ops, nops, tag);
for(i = 0; i < nops; i++) {
tmp = grpc_op_string(&ops[i]);
gpr_log(file, line, severity, "ops[%d]: %s", i, tmp);