aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-07-21 12:34:38 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2017-07-21 12:34:38 -0700
commitd0c1e50ea91b9c4aefc7357a21daeae689d7bb48 (patch)
treecc334f1fa1c90dbb7e66a437d3d994ff9b15e3b8 /src/core
parentc62ce80b805837dc2246b453a4a8b76c886cb6a3 (diff)
Changing a few variable names and adding few safety conditions
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ext/filters/client_channel/http_proxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/filters/client_channel/http_proxy.c b/src/core/ext/filters/client_channel/http_proxy.c
index 8a14b4e57c..ef3512ed83 100644
--- a/src/core/ext/filters/client_channel/http_proxy.c
+++ b/src/core/ext/filters/client_channel/http_proxy.c
@@ -67,7 +67,7 @@ static char* get_http_proxy_server(grpc_exec_ctx* exec_ctx, char** user_cred) {
/* User cred found */
*user_cred = authority_strs[0];
proxy_name = authority_strs[1];
- gpr_log(GPR_INFO, "userinfo found in proxy URI");
+ gpr_log(GPR_DEBUG, "userinfo found in proxy URI");
} else {
/* Bad authority */
for (size_t i = 0; i < authority_nstrs; i++) {