WARNING:
You are browsing the documentation for Symfony 2.6
which is not maintained anymore.
Consider upgrading your projects to Symfony 5.2.
WebProfilerBundle Configuration (“web_profiler”)
WebProfilerBundle Configuration (“web_profiler”)¶
Full Default Configuration¶
- YAML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
web_profiler: # DEPRECATED, it is not useful anymore and can be removed # safely from your configuration verbose: true # display the web debug toolbar at the bottom of pages with # a summary of profiler info toolbar: false position: bottom # gives you the opportunity to look at the collected data # before following the redirect intercept_redirects: false # Exclude AJAX requests in the web debug toolbar for specified paths excluded_ajax_paths: ^/bundles|^/_wdt
- XML
1 2 3 4 5 6
<web-profiler:config toolbar="false" verbose="true" intercept_redirects="false" excluded_ajax_paths="^/bundles|^/_wdt" />
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.