Skip to content

Commit

Permalink
Fix formatting in Nio2Session
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaswolf committed May 9, 2024
1 parent a59a416 commit de3f3b2
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -557,8 +557,10 @@ protected void handleCompletedWriteCycle(
if (buffer.hasRemaining()) {
try {
if (log.isDebugEnabled()) {
log.debug("handleCompletedWriteCycle({}) incomplete write of writeLen={}. Written result={}, resume writing buffer.remaining()={} at cycle={} after {} nanos",
this, writeLen, result, buffer.remaining(), writeCyclesCounter.get(), System.nanoTime() - lastWriteCycleStart.get());
log.debug(
"handleCompletedWriteCycle({}) incomplete write of writeLen={}. Written result={}, resume writing buffer.remaining()={} at cycle={} after {} nanos",
this, writeLen, result, buffer.remaining(), writeCyclesCounter.get(),
System.nanoTime() - lastWriteCycleStart.get());
}

doWriteCycle(buffer, completionHandler);
Expand Down

0 comments on commit de3f3b2

Please sign in to comment.