Skip to content

Commit

Permalink
Improving logging for failure in onTimeout listener
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed Apr 26, 2021
1 parent b15b37f commit cc79752
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -663,8 +663,7 @@ public void run()
}
catch (Throwable x)
{
LOG.warn(x + " while invoking onTimeout listener " + listener);
LOG.debug(x);
LOG.warn("{} while invoking onTimeout listener {}", x, listener, x);
}
}
}
Expand Down

0 comments on commit cc79752

Please sign in to comment.