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 ec09cdf commit 62d0e15Copy full SHA for 62d0e15
src/LiveComponent/doc/index.rst
@@ -3715,6 +3715,11 @@ Debugging Components
3715
Need to list or debug some component issues.
3716
The `Twig Component debug command`_ can help you.
3717
3718
+To debug your PHP code, you can inject a `private LoggerInterface $logger` in your `__construct`.
3719
+Then you can use `$this->logger->debug('Message', ['var' => $var]);` and see the output in `var/log/dev.log`.
3720
+`dump` won't display anything anywhere (not even the debug toolbar).
3721
+`dd` will display in your browser, but will also deadlock your component - you cannot dismiss it and continue working.
3722
+
3723
Test Helper
3724
-----------
3725
0 commit comments