--- a/vendor/adyen/module-payment/Logger/Handler/AdyenNotification.php	2025-04-01 10:55:42.000000000 +0000
+++ b/vendor/adyen/module-payment/Logger/Handler/AdyenNotification.php	2025-06-26 12:55:14.410703200 +0000
@@ -11,8 +11,10 @@
 
 namespace Adyen\Payment\Logger\Handler;
 
-use Monolog\Logger;
 use Adyen\Payment\Logger\AdyenLogger;
+use Magento\Framework\Filesystem\DriverInterface;
+use Monolog\Logger;
+use Monolog\Level;
 
 class AdyenNotification extends AdyenBase
 {
@@ -26,5 +28,24 @@
      */
     protected $loggerType = AdyenLogger::ADYEN_NOTIFICATION;
 
-    protected $level = AdyenLogger::ADYEN_NOTIFICATION;
-}
+    /**
+     * AdyenNotification constructor.
+     *
+     * @param DriverInterface $filesystem
+     * @param string|null $filePath
+     * @param string|null $fileName
+     * @param string|null $logFormat
+     */
+    public function __construct(
+        DriverInterface $filesystem,
+        ?string $filePath = null,
+        ?string $fileName = null,
+        ?string $logFormat = null
+    ) {
+        // Set the level before calling parent constructor
+        $this->level = Level::Info; // Since ADYEN_NOTIFICATION = 200 (INFO level)
+        
+        // Call parent constructor with required arguments
+        parent::__construct($filesystem, $filePath, $fileName, $logFormat);
+    }
+}
