diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/logger.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/logger.html.twig index 8843a95ecd..373233afa8 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/logger.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/logger.html.twig @@ -68,6 +68,7 @@

Info. & Errors {{ collector.counterrors ?: info_and_error_logs|length }}

+

Informational and error log messages generated during the execution of the application.

{% if info_and_error_logs is empty %} @@ -84,6 +85,7 @@ {# 'deprecation_logs|length' is not used because deprecations are now grouped and the group count doesn't match the message count #}

Deprecations {{ collector.countdeprecations|default(0) }}

+

Log messages generated by using features marked as deprecated.

{% if deprecation_logs is empty %} @@ -98,6 +100,7 @@

Debug {{ debug_logs|length }}

+

Unimportant log messages generated during the execution of the application.

{% if debug_logs is empty %} @@ -111,7 +114,8 @@
-

Silenced PHP Notices{{ collector.countscreams|default(0) }}

+

PHP Notices {{ collector.countscreams|default(0) }}

+

Log messages generated by PHP notices silenced with the @ operator.

{% if silenced_logs is empty %} @@ -129,7 +133,8 @@ {% set compilerLogTotal = compilerLogTotal + logs|length %} {% endfor %}
-

Container Compilation{{ compilerLogTotal }}

+

Container {{ compilerLogTotal }}

+

Log messages generated during the compilation of the service container.

{% if collector.compilerLogs is empty %}