JSON Log Viewer

Search

The Search is capable of searching inbetween words and is not case sensitive.

Sort

Check the boxes to show or hide columns.

Logs

Click on the table headers to sort the table.
{% for log in logs %} {% endfor %}
Timestamp Levelname Module FuncName Message Traceback
{{ log.asctime }} {{ log.levelname }} {{ log.module }} {{ log.funcName }} {% if log.message | length > 50 %}
{{ log.message | truncate(50) }}
{% else %}
{{ log.message }}
{% endif %}
{{ log.exc_info }}