Skip to content

Commit

Permalink
Minor log message change
Browse files Browse the repository at this point in the history
  • Loading branch information
seime committed Jul 7, 2024
1 parent fdffdbe commit bda9bfe
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public void start() {
keyIterator.remove();
}
} catch (ClosedSelectorException e) {
logger.debug("Selector closed");
logger.debug("Selector closed, stopping thread");
keepRunning = false;
} catch (Exception e) {
logger.warn("Error while selecting", e);
logger.warn("Error while selecting, stopping thread", e);
keepRunning = false;
}
}
Expand All @@ -70,7 +70,6 @@ private void processKey(SelectionKey readyKey) {
} else {
processReceivedData(frameHelper, buffer, channel);
}

} else {
logger.trace("Key not readable");
}
Expand Down

0 comments on commit bda9bfe

Please sign in to comment.