@@ -175,36 +175,28 @@ To get a list of *all* of the routes in your system, use the ``debug:router`` co
175
175
176
176
$ php bin/console debug:router
177
177
178
- You should see your * one * route so far :
178
+ You should see your ` app_lucky_number ` route at the very top :
179
179
180
180
================== ======== ======== ====== ===============
181
181
Name Method Scheme Host Path
182
182
================== ======== ======== ====== ===============
183
183
app_lucky_number ANY ANY ANY /lucky/number
184
184
================== ======== ======== ====== ===============
185
185
186
+ You will also see debugging routes below `app_lucky_number ` -- more on the debugging routes in the next section.
187
+
186
188
You'll learn about many more commands as you continue!
187
189
188
190
The Web Debug Toolbar: Debugging Dream
189
191
--------------------------------------
190
192
191
193
One of Symfony's *killer * features is the Web Debug Toolbar: a bar that displays
192
- a *huge * amount of debugging information along the bottom of your page while developing.
193
-
194
- To use the web debug toolbar, install the Profiler pack first:
195
-
196
- .. code-block :: terminal
197
-
198
- $ composer require --dev symfony/profiler-pack
199
-
200
- As soon as this finishes, refresh your page. You should see a black bar along the
201
- bottom of the page. You'll learn more about all the information it holds along the
202
- way, but feel free to experiment: hover over and click the different icons to get
203
- information about routing, performance, logging and more.
194
+ a *huge * amount of debugging information along the bottom of your page while developing. This is all
195
+ included out of the box using a package called `symfony/profiler-pack `.
204
196
205
- This is also a great example of Flex! After downloading the profiler package,
206
- the recipe created several configuration files so that the web debug toolbar
207
- worked instantly .
197
+ You will see a black bar along the bottom of the page.You'll learn more about all the information it holds
198
+ along the way, but feel free to experiment: hover over and click
199
+ the different icons to get information about routing, performance, logging and more .
208
200
209
201
Rendering a Template
210
202
--------------------
0 commit comments