Fix typo in flow control trace

pull/17944/head
Jan Tattermusch 6 years ago committed by GitHub
parent e3f37b7f43
commit 0da52ab133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/ext/transport/chttp2/transport/flow_control.cc

@ -111,7 +111,7 @@ void FlowControlTrace::Finish() {
saw_str = gpr_leftpad("", ' ', kTracePadding); saw_str = gpr_leftpad("", ' ', kTracePadding);
} }
gpr_log(GPR_DEBUG, gpr_log(GPR_DEBUG,
"%p[%u][%s] | %s | trw:%s, ttw:%s, taw:%s, srw:%s, slw:%s, saw:%s", "%p[%u][%s] | %s | trw:%s, tlw:%s, taw:%s, srw:%s, slw:%s, saw:%s",
tfc_, sfc_ != nullptr ? sfc_->stream()->id : 0, tfc_, sfc_ != nullptr ? sfc_->stream()->id : 0,
tfc_->transport()->is_client ? "cli" : "svr", reason_, trw_str, tfc_->transport()->is_client ? "cli" : "svr", reason_, trw_str,
tlw_str, taw_str, srw_str, slw_str, saw_str); tlw_str, taw_str, srw_str, slw_str, saw_str);

Loading…
Cancel
Save