Skip to content

Commit

Permalink
change debug logging from info level to debug in EstablishedContextIm…
Browse files Browse the repository at this point in the history
…pl (#167)
  • Loading branch information
kortemik authored May 14, 2024
1 parent 3f0cfc7 commit 1b336fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void handleEvent(SelectionKey selectionKey) {
LOGGER.debug("handleEvent submitting new runnable for write");
try {
executorService.submit(relpWrite);
LOGGER.info("submitted write!");
LOGGER.debug("submitted write!");
}
catch (RejectedExecutionException ree) {
LOGGER.error("executorService.submit threw <{}> for write", ree.getMessage());
Expand Down

0 comments on commit 1b336fe

Please sign in to comment.