[log] Longer space for filenames (#31432)

pull/31493/head
Craig Tiller 2 years ago committed by GitHub
parent 008661a5d6
commit beecba895b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/lib/gpr/log_linux.cc

@ -103,10 +103,10 @@ void gpr_default_log(gpr_log_func_args* args) {
? grpc_core::GetCurrentStackTrace()
: absl::nullopt;
if (stack_trace) {
fprintf(stderr, "%-60s %s\n%s\n", prefix.c_str(), args->message,
fprintf(stderr, "%-70s %s\n%s\n", prefix.c_str(), args->message,
stack_trace->c_str());
} else {
fprintf(stderr, "%-60s %s\n", prefix.c_str(), args->message);
fprintf(stderr, "%-70s %s\n", prefix.c_str(), args->message);
}
}

Loading…
Cancel
Save