diff options
author | David Garcia Quintas <dgq@google.com> | 2016-11-08 15:59:30 -0800 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-11-08 15:59:30 -0800 |
commit | 76b894c5e6a76134631b071e72b56f12ab331f08 (patch) | |
tree | 8eb2283eb9dd5cb40302a6356cc8547c1e10953f /src/core/lib/security | |
parent | 3b51f0b49296513c384e189b1d26648f5c608c92 (diff) |
Demote handshake failure logging message from ERROR to INFO
Diffstat (limited to 'src/core/lib/security')
-rw-r--r-- | src/core/lib/security/transport/handshake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/security/transport/handshake.c b/src/core/lib/security/transport/handshake.c index 01e7fab773..2eb5544f43 100644 --- a/src/core/lib/security/transport/handshake.c +++ b/src/core/lib/security/transport/handshake.c @@ -125,7 +125,7 @@ static void security_handshake_done(grpc_exec_ctx *exec_ctx, h->auth_context); } else { const char *msg = grpc_error_string(error); - gpr_log(GPR_ERROR, "Security handshake failed: %s", msg); + gpr_log(GPR_INFO, "Security handshake failed: %s", msg); grpc_error_free_string(msg); if (h->secure_endpoint != NULL) { |