Decrease verbosity of log messages that can happen during ALTS handshake cancellation (#29255)

pull/29277/head
apolcyn 3 years ago committed by GitHub
parent 276dc89fd9
commit 69f87d2d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc

@ -447,7 +447,7 @@ static tsi_result alts_tsi_handshaker_continue_handshaker_next(
GPR_ASSERT(handshaker->client == nullptr);
handshaker->client = client;
if (handshaker->shutdown) {
gpr_log(GPR_ERROR, "TSI handshake shutdown");
gpr_log(GPR_INFO, "TSI handshake shutdown");
return TSI_HANDSHAKE_SHUTDOWN;
}
}
@ -532,7 +532,7 @@ static tsi_result handshaker_next(
{
grpc_core::MutexLock lock(&handshaker->mu);
if (handshaker->shutdown) {
gpr_log(GPR_ERROR, "TSI handshake shutdown");
gpr_log(GPR_INFO, "TSI handshake shutdown");
return TSI_HANDSHAKE_SHUTDOWN;
}
}

Loading…
Cancel
Save