{% extends "base.html" %} {% block title %}Logs · {{ site.title }}{% endblock %} {% block content %}

Application logs

{% if not available %}

No log files found. File logging is written by configure_logging(log_dir=...); once it runs, records show up here.

{% else %}
{% if entries %}
{% for entry in entries %} {% endfor %}
Timestamp Level Logger Message
{{ entry.get("timestamp", "") }} {% set level = (entry.get("level", "") or "")|lower %} {{ entry.get("level", "—") }} {{ entry.get("logger", entry.get("name", "—")) }} {{ entry.get("message", "") }}
{% if pagination.page > 1 %} « Prev {% endif %} Page {{ pagination.page }} of {{ pagination.pages }} ({{ pagination.total }} records) {% if pagination.page < pagination.pages %} Next » {% endif %}
{% else %}

No records match the current filter.

{% endif %} {% endif %}
{% endblock %}