Log messages generated during the compilation of the service container.
{% if collector.compilerLogs is empty %}
There are no compiler log messages.
{% else %}
{% for class, logs in collector.compilerLogs %}
{% endfor %}
Messages
Class
{{ logs|length }}
{% set context_id = 'context-compiler-' ~ loop.index %}
{% for log in logs %}
{{ profiler_dump_log(log.message) }}
{% endfor %}
{% endif %}
{% endblock %}
{% macro render_log_message(category, log_index, log) %}
{% set has_context = log.context is defined and log.context is not empty %}
{% set has_trace = log.context.exception.trace is defined %}
{% if not has_context %}
{{ profiler_dump_log(log.message) }}
{% else %}
{{ profiler_dump_log(log.message, log.context) }}
{% endif %}
{% if log.channel %}
{{ log.channel }}
{% endif %}
{% if log.errorCount is defined and log.errorCount > 1 %}
{{ log.errorCount }} times
{% endif %}
{% if has_context %}
{% set context_id = 'context-' ~ category ~ '-' ~ log_index %}
{% endif %}
{% if has_trace %}
{% set trace_id = 'trace-' ~ category ~ '-' ~ log_index %}
{% endif %}
{% if has_context %}