diff --git a/src/Core/Events/Events.php b/src/Core/Events/Events.php index 5f7294c34..0d30fd503 100644 --- a/src/Core/Events/Events.php +++ b/src/Core/Events/Events.php @@ -163,11 +163,13 @@ private static function getModuleSettingsService(): ModuleSettings $context = $container->get(ContextInterface::class); /** @var ModuleConfigurationDaoBridgeInterface $moduleConfigurationDaoBridgeInterface */ $moduleConfigurationDaoBridgeInterface = $container->get(ModuleConfigurationDaoBridgeInterface::class); + $logger = $container->get('OxidSolutionCatalysts\PayPal\Logger'); return new ModuleSettings( $moduleSettingsBridge, $context, - $moduleConfigurationDaoBridgeInterface + $moduleConfigurationDaoBridgeInterface, + $logger ); } }