HHH-13831 Add missing placeholder to log message

This commit is contained in:
Davide D'Alto 2020-01-30 14:52:00 +00:00 committed by Steve Ebersole
parent 0a2dd4e126
commit c0a2b4f424
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ class EventListenerGroupImpl<T> implements EventListenerGroup<T> {
return;
}
case REPLACE_ORIGINAL: {
log.debugf( "Replacing listener registration (%s) : `%s` -> ", strategy.getAction(), existingListener, listener );
log.debugf( "Replacing listener registration (%s) : `%s` -> %s", strategy.getAction(), existingListener, listener );
prepareListener( listener );
listeners[i] = listener;