Skip to content

Commit

Permalink
Change log level from WARNING to FINER. Fixes grpc#10816
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-safran committed Feb 6, 2024
1 parent 4f7ec13 commit 455c840
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ final void sendOutOfBandClose(int callId, Status status) {
TransactionUtils.fillInFlags(parcel.get(), flags | TransactionUtils.FLAG_OUT_OF_BAND_CLOSE);
sendTransaction(callId, parcel);
} catch (StatusException e) {
logger.log(Level.WARNING, "Failed sending oob close transaction", e);
logger.log(Level.FINER, "Failed sending oob close transaction", e);
}
}

Expand Down

0 comments on commit 455c840

Please sign in to comment.