Issue #3133 - Logging of key.readyOps() can throw unchecked CancelledKeyException.

Changed logging to level IGNORE, since it's too verbose when debugging.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2019-04-04 12:18:16 +02:00
parent ebd676df5d
commit b6b7d2e730
1 changed files with 2 additions and 4 deletions

View File

@ -295,8 +295,7 @@ public class ManagedSelector extends ContainerLifeCycle implements Dumpable
} }
catch (Throwable x) catch (Throwable x)
{ {
if (LOG.isDebugEnabled()) LOG.ignore(x);
LOG.debug(x);
return -1; return -1;
} }
} }
@ -309,8 +308,7 @@ public class ManagedSelector extends ContainerLifeCycle implements Dumpable
} }
catch (Throwable x) catch (Throwable x)
{ {
if (LOG.isDebugEnabled()) LOG.ignore(x);
LOG.debug(x);
return -1; return -1;
} }
} }