--- a/vendor/adyen/module-payment/Logger/Handler/AdyenDebug.php	2025-04-01 10:55:42.000000000 +0000
+++ b/vendor/adyen/module-payment/Logger/Handler/AdyenDebug.php	2025-06-26 12:55:14.402703800 +0000
@@ -12,7 +12,9 @@
 namespace Adyen\Payment\Logger\Handler;
 
 use Adyen\Payment\Logger\AdyenLogger;
+use Magento\Framework\Filesystem\DriverInterface;
 use Monolog\Logger;
+use Monolog\Level;
 
 class AdyenDebug extends AdyenBase
 {
@@ -26,5 +28,24 @@
      */
     protected $loggerType = AdyenLogger::ADYEN_DEBUG;
 
-    protected $level = AdyenLogger::ADYEN_DEBUG;
-}
+    /**
+     * AdyenDebug 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::Debug;
+        
+        // Call parent constructor with required arguments
+        parent::__construct($filesystem, $filePath, $fileName, $logFormat);
+    }
+}
