fix rendering exception stack traces

This commit is contained in:
Christian Flothmann 2018-04-13 17:39:33 +02:00
parent 7cd5e43141
commit 99302e72fc
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,4 @@
{% if exception.trace|length %} {% if exception.trace|length %}
<pre class="stacktrace">
{{ exception.class }}: {{ exception.class }}:
{% if exception.message is not empty %} {% if exception.message is not empty %}
{{- exception.message }} {{- exception.message }}
@ -8,5 +7,4 @@
{% for trace in exception.trace %} {% for trace in exception.trace %}
{{ include('@Twig/Exception/trace.txt.twig', { trace: trace }, with_context = false) }} {{ include('@Twig/Exception/trace.txt.twig', { trace: trace }, with_context = false) }}
{% endfor %} {% endfor %}
</pre>
{% endif %} {% endif %}

View File

@ -17,7 +17,13 @@
<tbody id="trace-text-{{ index }}"> <tbody id="trace-text-{{ index }}">
<tr> <tr>
<td> <td>
{{ include('@Twig/Exception/traces.txt.twig', { exception: exception }, with_context = false) }} {% if exception.trace|length %}
<pre class="stacktrace">
{%- filter escape('html') -%}
{{- include('@Twig/Exception/traces.txt.twig', { exception: exception, format: 'html' }, with_context = false) }}
{% endfilter %}
</pre>
{% endif %}
</td> </td>
</tr> </tr>
</tbody> </tbody>