Log Viewer

{% for line in query %} {% for app_log in line.app_logs %} {% endfor %} {% endfor %}
Time Log Level Log Message
{{ app_log.timestamp }} {% if app_log.level == 1 %} DEBUG {% elif app_log.level == 2 %} INFO {% elif app_log.level == 3 %} WARN {% elif app_log.level == 4 %} ERROR {% elif app_log.level == 5 %} CRITICAL {% else %} UNKNOWN {% endif %} {{ app_log.message.replace('\n', '
') }}
View Newest {% if is_more %} Next 10 {% endif %}