[promises] Add a trace that shows which filters are converted (#31655)

pull/31658/head
Craig Tiller 2 years ago committed by GitHub
parent 335b74fea7
commit 4923a75ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/core/lib/channel/channel_stack.cc

@ -113,7 +113,8 @@ grpc_error_handle grpc_channel_stack_init(
if (grpc_trace_channel_stack.enabled()) {
gpr_log(GPR_INFO, "CHANNEL_STACK: init %s", name);
for (size_t i = 0; i < filter_count; i++) {
gpr_log(GPR_INFO, "CHANNEL_STACK: filter %s", filters[i]->name);
gpr_log(GPR_INFO, "CHANNEL_STACK: filter %s%s", filters[i]->name,
filters[i]->make_call_promise ? " [promise-capable]" : "");
}
}

Loading…
Cancel
Save