{% extends "base.html" %} {% block title %}Access log — Waikiki{% endblock %} {% block content %}
Every request received and call made — the web app and the MCP server — plus Python errors, with duration. Newest first. Kept {{ retention_hours }}h (change in Settings → Logging). Slow calls (≥3s) are highlighted — a good first stop for the Cowork timeout.
{% if not entries %}No log entries {{ 'match that filter' if q or kind else 'yet' }}.
{% endif %}| Time | Kind | Status | ms | Request | Detail |
|---|---|---|---|---|---|
| {{ e.ts }} | {{ e.kind }} | {{ e.status }} | {{ e.ms }} | {{ e.request }} | {{ e.detail }} |