Skip to content

Commit

Permalink
Merge pull request #6212 from eclipse/jetty-9.4.x-better-ontimeout-wa…
Browse files Browse the repository at this point in the history
…rnings

Improving logging for failure in onTimeout listener
  • Loading branch information
joakime committed Apr 27, 2021
2 parents b15b37f + cc79752 commit e3abe7b
Showing 1 changed file with 1 addition and 2 deletions.
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 e3abe7b

Please sign in to comment.