Skip to content

Commit

Permalink
Use info log level for message "Reconnecting after timeout" in Handle…
Browse files Browse the repository at this point in the history
…rBase (apache#851)
  • Loading branch information
merlimat authored Oct 25, 2017
1 parent c85a779 commit aa40f96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected void connectionClosed(ClientCnx cnx) {
log.info("[{}] [{}] Closed connection {} -- Will try again in {} s", topic, getHandlerName(), cnx.channel(),
delayMs / 1000.0);
client.timer().newTimeout(timeout -> {
log.warn("[{}] [{}] Reconnecting after timeout", topic, getHandlerName());
log.info("[{}] [{}] Reconnecting after timeout", topic, getHandlerName());
grabCnx();
}, delayMs, TimeUnit.MILLISECONDS);
}
Expand Down

0 comments on commit aa40f96

Please sign in to comment.