aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/call_log_batch.c
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-30 14:47:37 -0700
committerGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2015-04-30 14:47:37 -0700
commit0420d7cb63622464f1a2ee76122d7116decdd23c (patch)
tree5576df4494431c89591e0e5fbe15db239fc21dc8 /src/core/surface/call_log_batch.c
parent884f4dad58891a119c53af664680c134c73723b3 (diff)
fix: trace for grpc_call_start_batch only displayed lower 32bits of tag
Diffstat (limited to 'src/core/surface/call_log_batch.c')
-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 a33583a12d..6f66e8463f 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, 0x%x)", call, ops, nops, tag);
+ "grpc_call_start_batch(%p, %p, %d, %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);