Skip to content

Commit

Permalink
BUGFIX: Include listener class name in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
kdambekalns authored Feb 17, 2021
1 parent c6c5b49 commit 91e318a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function getEventStoreIdentifierForListenerClassName(string $listenerClas
return $eventStoreIdentifier;
}
}
throw new \InvalidArgumentException('No mappings found for Event Listener "%s"', 1579187905);
throw new \InvalidArgumentException(sprintf('No mappings found for Event Listener "%s"', $listenerClassName), 1579187905);
}

/**
Expand Down

0 comments on commit 91e318a

Please sign in to comment.