Skip to content

Commit

Permalink
Issue #4996 update
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Bartel <janb@webtide.com>
  • Loading branch information
janbartel committed Aug 17, 2020
1 parent b3b69b2 commit d8bef17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ private void notifyEvent1(Function<Listener, Consumer<Request>> function, Reques
catch (Throwable x)
{
if (LOG.isDebugEnabled())
LOG.debug("Failure invoking listener " + listener, x);
LOG.debug("Failure invoking listener {}", listener, x);
}
}
}
Expand All @@ -1016,7 +1016,7 @@ private void notifyEvent2(Function<Listener, BiConsumer<Request, ByteBuffer>> fu
catch (Throwable x)
{
if (LOG.isDebugEnabled())
LOG.debug("Failure invoking listener " + listener, x);
LOG.debug("Failure invoking listener {}", listener, x);
}
}
}
Expand All @@ -1032,7 +1032,7 @@ private void notifyEvent2(Function<Listener, BiConsumer<Request, Throwable>> fun
catch (Throwable x)
{
if (LOG.isDebugEnabled())
LOG.debug("Failure invoking listener " + listener, x);
LOG.debug("Failure invoking listener {}", listener, x);
}
}
}
Expand Down

0 comments on commit d8bef17

Please sign in to comment.