{% extends "/moya.debug/base.html" %} {% block "title" %}${trace.error_type} ${trace.method} ${trace.url} {% endblock %} {% block "comments" %} {% endblock %} {% block "body" %} {%- def "info" %} {%- if map %} {% if title or subtitle %}

${title} ${subtitle}

{% endif %}
{%- for k, v in sorted:items:map %}
${k}
${debug:v or html:' '}
{%- endfor %}
{%- endif %} {%- enddef %} {% if trace.moya_exception_type %}

${trace.moya_exception_type} unhandled logic exception

{% else %}

${trace.error_type}

{% endif %} {% if trace.msg %}

{% markup trace.msg as 'text' %}

{% endif %} {% let console_error = trace.console_error %} {% if console_error %}
${html:console_error}
{% endif %} {% if trace.diagnosis %}
{% markup trace.diagnosis as "markdown" %}
{% endif %}

Request details

{% if trace.stack %}

Moya trace (most recent call first):

{% endif %} {%- for frame in reversed:trace.stack %}

{%- if frame.libid %} ${frame.location} {%- else %} {%- if frame.format == 'moyatemplate' %} ${frame.location} {%- else %} ${frame.location} {%- endif %} {%- endif %}

{% render html:frame.snippet %}

{%- endfor %} {% endblock %}