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