{% extends "base.html" %} {% block title %}Logs - PyRunner{% endblock %} {% block content %}
{% include "cpanel/_sidebar.html" %}

Application Logs

View and search through application logs

{{ log_files_count }} file(s), {{ total_size|filesizeformat }} {% if request.user.is_superuser %} {% endif %}
{% if level_filter or search_query or date_from or date_to %} Clear {% endif %}

Showing {{ entries|length }} of {{ total_count }} entries

{% if entries %}
{% for entry in entries %} {% endfor %}
Time Level Logger Message
{{ entry.timestamp|date:"M d, H:i:s" }} {{ entry.level }} {{ entry.logger }}
{{ entry.message }}
{% if entry.exception %}
Show exception
{{ entry.exception }}
{% endif %}
{% if total_pages > 1 %}
{% if page > 1 %} Previous {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next {% endif %}
{% endif %} {% else %}

No logs found

{% if level_filter or search_query or date_from or date_to %} Try adjusting your filters or clear all filters. {% else %} No log entries have been recorded yet. {% endif %}

{% endif %}
{% endblock %}