{{ exception_type }}
at {{ path }}
{{ exception_value }}
{{ method }}
{{ path }}
Details
Traceback · most recent call last
-
{% for frame in frames %}
-
{% if frame.context_line is not none %} {%- set _ctx = ((frame.pre_context or []) + [frame.context_line] + (frame.post_context or [])) -%} {%- set _ns = namespace(ind=999) -%} {%- for _l in _ctx -%} {%- set _li = (_l | length) - (_l.lstrip() | length) -%} {%- if _l.strip() and _li > 0 and _li < _ns.ind -%}{%- set _ns.ind = _li -%}{%- endif -%} {%- endfor -%} {%- set _ind = _ns.ind if _ns.ind < 999 else 0 -%} {%- set _cli = (frame.context_line | length) - (frame.context_line.lstrip() | length) -%} {%- set _rel = _cli - _ind if _cli >= _ind else 0 -%}
{{ frame.filename }}line {{ frame.lineno }} · {{ frame.name }}{% if frame.pre_context %}{% endif %}-
{% for line in frame.pre_context %} {%- set _li = (line |
length) - (line.lstrip() | length) -%} {%- set _v = line[_ind:]
if _li >= _ind else line -%}
-
{{ _v.rstrip('\n\r') }}
{% endfor %}
-
{{ frame.context_line.rstrip('\n\r').lstrip() }}
-
{% for line in frame.post_context %} {%- set _li = (line |
length) - (line.lstrip() | length) -%} {%- set _v = line[_ind:]
if _li >= _ind else line -%}
-
{{ _v.rstrip('\n\r') }}
{% endfor %}
{% endfor %}
-
You're seeing this because DEBUG = True in your Nitro
settings. Set it to False in production and Nitro will
display a standard 500 page instead.