8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c90c8b commit 7cfc3ceCopy full SHA for 7cfc3ce
src/Symfony/Component/VarDumper/Server/DumpServer.php
@@ -52,6 +52,10 @@ public function listen(callable $callback): void
52
}
53
54
foreach ($this->getMessages() as $clientId => $message) {
55
+ if ($this->logger) {
56
+ $this->logger->info('Received a payload from client {clientId}', ['clientId' => $clientId]);
57
+ }
58
+
59
$payload = @unserialize(base64_decode($message), ['allowed_classes' => [Data::class, Stub::class]]);
60
61
// Impossible to decode the message, give up.
0 commit comments