Change log level from WARNING to FINER for expected exception (#10899) · grpc/grpc-java@7ba0718

File tree

1 file changed

lines changed

  • binder/src/main/java/io/grpc/binder/internal

1 file changed

lines changed

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