Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-safran committed Jan 6, 2025
1 parent 0ea408b commit eca5a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/io/grpc/internal/AbstractStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ private void notifyIfReady() {
doNotify = isReady();
if (!doNotify && log.isLoggable(Level.FINEST)) {
log.log(Level.FINEST,
"Stream not ready so skip notifying listener.\n" +
"details: allocated/deallocated:{0}/{3}, sent queued: {1}, ready thresh: {2}",
"Stream not ready so skip notifying listener.\n"
+ "details: allocated/deallocated:{0}/{3}, sent queued: {1}, ready thresh: {2}",
new Object[] {allocated, numSentBytesQueued, onReadyThreshold, deallocated});
}
}
Expand Down

0 comments on commit eca5a1e

Please sign in to comment.