trace.txt.twig 270 B

12345678
  1. {% if trace.function %}
  2. at {{ trace.class ~ trace.type ~ trace.function }}({{ trace.args|format_args_as_text }})
  3. {% else %}
  4. at n/a
  5. {% endif %}
  6. {% if trace.file is defined and trace.line is defined %}
  7. in {{ trace.file }} line {{ trace.line }}
  8. {% endif %}