Skip to content

Commit

Permalink
[Gpr_To_Absl_Logging] Disable absl logging (#36546)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashykt committed May 7, 2024
1 parent 7062f29 commit 03e6617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/lib/config/config_vars.cc
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ConfigVars::ConfigVars(const Overrides& overrides)
FLAGS_grpc_not_use_system_ssl_roots, "GRPC_NOT_USE_SYSTEM_SSL_ROOTS",
overrides.not_use_system_ssl_roots, false)),
absl_logging_(LoadConfig(FLAGS_grpc_absl_logging, "GRPC_ABSL_LOGGING",
overrides.absl_logging, true)),
overrides.absl_logging, false)),
dns_resolver_(LoadConfig(FLAGS_grpc_dns_resolver, "GRPC_DNS_RESOLVER",
overrides.dns_resolver, "")),
verbosity_(LoadConfig(FLAGS_grpc_verbosity, "GRPC_VERBOSITY",
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/config/config_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@
ECDHE-RSA-AES256-GCM-SHA384"
- name: absl_logging
type: bool
default: true
default: false
description:
Use absl logging from within gpr_log.

0 comments on commit 03e6617

Please sign in to comment.