Skip to content

Commit

Permalink
Change log level from WARNING to FINER for expected exception (#10899)
Browse files Browse the repository at this point in the history
* Change log level from WARNING to FINER.  Fixes #10816
  • Loading branch information
larry-safran committed Feb 8, 2024
1 parent 5faab7f commit 7ba0718
Showing 1 changed file with 1 addition and 1 deletion.
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 7ba0718

Please sign in to comment.