Skip to content
Snippets Groups Projects
Commit 6f0812cd authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #1437 from jtattermusch/trace_batch_fix

fix: trace for grpc_call_start_batch only displayed lower 32bits of tag
parents 5ae895a5 532cd4d7
No related branches found
No related tags found
No related merge requests found
...@@ -112,7 +112,7 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity, ...@@ -112,7 +112,7 @@ void grpc_call_log_batch(char *file, int line, gpr_log_severity severity,
char *tmp; char *tmp;
size_t i; size_t i;
gpr_log(file, line, severity, gpr_log(file, line, severity,
"grpc_call_start_batch(%p, %p, %d, 0x%x)", 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++) { for(i = 0; i < nops; i++) {
tmp = grpc_op_string(&ops[i]); tmp = grpc_op_string(&ops[i]);
gpr_log(file, line, severity, "ops[%d]: %s", i, tmp); gpr_log(file, line, severity, "ops[%d]: %s", i, tmp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment