Added missing log argument

pull/989/head
murgatroid99 10 years ago
parent d47946be2a
commit dc9faa3430
  1. 2
      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);
"grpc_call_start_batch(%p, %p, %d, 0x%x)", 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);

Loading…
Cancel
Save