Skip to content

Commit 1ee8a54

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Improve profiler
2 parents 8b1767f + cc774af commit 1ee8a54

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

profiler.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ install the ``profiler`` :ref:`Symfony pack <symfony-packs>` before using it:
1515
1616
$ composer require --dev symfony/profiler-pack
1717
18-
Now browse any page of your application in the development environment to let
18+
Now, browse any page of your application in the development environment to let
1919
the profiler collect information. Then, click on any element of the debug
2020
toolbar injected at the bottom of your pages to open the web interface of the
2121
Symfony Profiler, which will look like this:
@@ -24,6 +24,13 @@ Symfony Profiler, which will look like this:
2424
:align: center
2525
:class: with-browser
2626

27+
.. note::
28+
29+
The debug toolbar is only injected into HTML responses. For other kinds of
30+
contents (e.g. JSON responses in API requests) the profiler URL is available
31+
in the ``X-Debug-Token-Link`` HTTP response header. Browse the ``/_profiler``
32+
URL to see all profiles.
33+
2734
Accessing Profiling Data Programmatically
2835
-----------------------------------------
2936

@@ -206,7 +213,7 @@ event::
206213
if (!$this->getKernel()->isDebug()) {
207214
return;
208215
}
209-
216+
210217
$request = $event->getRequest();
211218
if (!$request->isXmlHttpRequest()) {
212219
return;

0 commit comments

Comments
 (0)