Skip to content

Commit

Permalink
[log] Longer space for filenames (#31432)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Oct 28, 2022
1 parent 008661a commit beecba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/lib/gpr/log_linux.cc
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit beecba8

Please sign in to comment.