Use debug logging rather than info for rejected ping task

This exception is thrown on node shutdown and doesn't indicate
an critical situation but rather is caught for consistency reasons.
This commit is contained in:
Simon Willnauer 2013-08-02 14:09:46 +02:00
parent 890d06f018
commit 012d47b500
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ public class UnicastZenPing extends AbstractLifecycleComponent<ZenPing> implemen
} }
listener.onPing(responses.values().toArray(new PingResponse[responses.size()])); listener.onPing(responses.values().toArray(new PingResponse[responses.size()]));
} catch (RejectedExecutionException ex) { } catch (RejectedExecutionException ex) {
logger.info("Ping execution ejected", ex); logger.debug("Ping execution ejected", ex);
} }
} }
}); });