diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-04-30 14:47:37 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-04-30 14:47:37 -0700 |
commit | 0420d7cb63622464f1a2ee76122d7116decdd23c (patch) | |
tree | 5576df4494431c89591e0e5fbe15db239fc21dc8 | |
parent | 884f4dad58891a119c53af664680c134c73723b3 (diff) |
fix: trace for grpc_call_start_batch only displayed lower 32bits of tag
-rw-r--r-- | src/core/surface/call_log_batch.c | 2 |
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); |