{% extends 'administration/base.html.twig' %} {% block title %}{{ file }} — {{ 'admin.modules_information.system_logs'|trans }}{% endblock %} {% block body %}
{{ 'admin.back'|trans }}

{{ file }}

{{ 'admin.system_logs.bytes_on_disk'|trans({ '%bytes%': totalBytes|number_format(0, ',', '.') }) }} {% if truncated %} {{ 'admin.system_logs.truncated_hint'|trans }} {% endif %}

{% if logLines is empty %}
{{ 'admin.system_logs.empty_result'|trans }}
{% else %}
{% for line in logLines %} {% set rowClass = 'text-body-secondary' %} {% if '.EMERGENCY:' in line or '.ALERT:' in line or '.CRITICAL:' in line or '.ERROR:' in line %} {% set rowClass = 'text-danger' %} {% elseif '.WARNING:' in line %} {% set rowClass = 'text-warning' %} {% elseif '.INFO:' in line or '.NOTICE:' in line %} {% set rowClass = 'text-body' %} {% elseif '.DEBUG:' in line %} {% set rowClass = 'text-muted' %} {% endif %}
{{ line|e }}
{% endfor %}
{% endif %}
{% endblock %}