{% trans "Debug Log" %}

{% set numLogs = logs.entries|length %} {% if numLogs > 0 %}
{{ wp_nonce_field(logs.nonce) }}
{% endif %}
{# logging disabled message #} {% if not logs.config['logging/enabled'] %}

{% trans "Logging is disabled" %}

{% endif %} {# log is empty message #} {% if numLogs == 0 %}

{% trans "The log is empty" %}

{% else %} {% if logs.config['logging/enabled'] %}

{{ "Showing the most recent %d log messages."|trans|format(numLogs) }}

{% endif %}
{% trans "Filters:" %} {% trans "All" %} {% trans "Errors" %} {% trans "Info" %} {% trans "Notice" %} {% trans "Warnings" %} {% trans "Debug" %}
{{ wp_nonce_field(logs.nonce) }}
{% for log in logs.entries %} {% endfor %}
{{ log.date }} {{ log.level|title }} {{ log.feed.post_title }} {{ log.message }}
{% endif %} {% if logs.show_options %}
{{ wp_nonce_field(logs.nonce) }}

{% trans "Log Options" %}

{% endif %}