{% extends "app_base.html" %} {% block title %}Server Logs{% endblock %} {% block page_title %}Administration{% endblock %} {% block content %} {% include "_admin_tabs.html" %}

Server Logs

Download full log
{% if not log_exists %}

No log file yet -- nothing has been logged since this server last started.

{% else %}

Last {{ log_lines }} lines of {{ log_path }}. Rotates at ~2MB (older entries roll into {{ log_path }}.1, etc. -- not shown here; use "Download full log" for just the current file).

{% for n in [200, 500, 2000, 5000] %} {{ n }} {% endfor %} Refresh
{{ log_text }}
{% endif %}
{% endblock %}