Demote handshake failure logging message from ERROR to INFO

pull/8687/head
David Garcia Quintas 8 years ago
parent 3b51f0b492
commit 76b894c5e6
  1. 2
      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) {

Loading…
Cancel
Save