diff --git a/typo3/sysext/core/Classes/Log/Logger.php b/typo3/sysext/core/Classes/Log/Logger.php
index 2459957b7a2239c0cae72cdc0459e84a3267be64..03e85c8fdfd711e2dee09661538866055e1e9c7a 100644
--- a/typo3/sysext/core/Classes/Log/Logger.php
+++ b/typo3/sysext/core/Classes/Log/Logger.php
@@ -14,6 +14,8 @@ namespace TYPO3\CMS\Core\Log;
  * The TYPO3 project - inspiring people to share!
  */
 
+use TYPO3\CMS\Core\Utility\GeneralUtility;
+
 /**
  * Logger to log events and data for different components.
  */
@@ -69,6 +71,28 @@ class Logger implements \Psr\Log\LoggerInterface
         $this->requestId = $requestId;
     }
 
+    /**
+     * Re-initialize instance with creating a new instance with up to date information
+     */
+    public function __wakeup()
+    {
+        $newLogger = GeneralUtility::makeInstance(LogManager::class)->getLogger($this->name);
+        $this->requestId = $newLogger->requestId;
+        $this->minimumLogLevel = $newLogger->minimumLogLevel;
+        $this->writers = $newLogger->writers;
+        $this->processors = $newLogger->processors;
+    }
+
+    /**
+     * Remove everything except the name, to be able to restore it on wakeup
+     *
+     * @return array
+     */
+    public function __sleep(): array
+    {
+        return ['name'];
+    }
+
     /**
      * Sets the minimum log level for which log records are written.
      *
diff --git a/typo3/sysext/core/Classes/Log/Writer/FileWriter.php b/typo3/sysext/core/Classes/Log/Writer/FileWriter.php
index b068d82d2b4aa0c457d9afc5f37caee03088750c..c33a1b65c23d5d2ccae4b5d91407dc868c634d70 100644
--- a/typo3/sysext/core/Classes/Log/Writer/FileWriter.php
+++ b/typo3/sysext/core/Classes/Log/Writer/FileWriter.php
@@ -271,23 +271,4 @@ class FileWriter extends AbstractWriter
         }
         return Environment::getVarPath() . sprintf($this->defaultLogFileTemplate, $namePart);
     }
-
-    /**
-     * Allow serialization of logger - reinitialize log file on unserializing
-     */
-    public function __wakeup()
-    {
-        self::$logFileHandlesCount[$this->logFile]++;
-        $this->setLogFile($this->logFile ?: $this->getDefaultLogFileName());
-    }
-
-    /**
-     * Property 'logFile' should be kept
-     *
-     * @return array
-     */
-    public function __sleep(): array
-    {
-        return ['logFile'];
-    }
 }