Skip to content

Commit 7ba0718

Browse files
authoredFeb 8, 2024
Change log level from WARNING to FINER for expected exception (#10899)
* Change log level from WARNING to FINER. Fixes #10816
1 parent 5faab7f commit 7ba0718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎binder/src/main/java/io/grpc/binder/internal/BinderTransport.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ final void sendOutOfBandClose(int callId, Status status) {
412412
TransactionUtils.fillInFlags(parcel.get(), flags | TransactionUtils.FLAG_OUT_OF_BAND_CLOSE);
413413
sendTransaction(callId, parcel);
414414
} catch (StatusException e) {
415-
logger.log(Level.WARNING, "Failed sending oob close transaction", e);
415+
logger.log(Level.FINER, "Failed sending oob close transaction", e);
416416
}
417417
}
418418

0 commit comments

Comments
 (0)
Please sign in to comment.