Skip to content

Commit

Permalink
Decrease verbosity of log messages that can happen during ALTS handsh…
Browse files Browse the repository at this point in the history
…ake cancellation (#29255) (#29280)
  • Loading branch information
apolcyn committed Apr 1, 2022
1 parent 6965ab5 commit 4a501bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 4a501bb

Please sign in to comment.