mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 20:18:52 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
7 lines
406 B
Twig
7 lines
406 B
Twig
{% if trace.function %}
|
|
at {{ trace.class ~ trace.type ~ trace.function }}({{ trace.args|format_args_as_text }})
|
|
{%- endif -%}
|
|
{% if trace.file|default('') is not empty and trace.line|default('') is not empty %}
|
|
{{- trace.function ? '\n (' : 'at '}}{{ trace.file|format_file(trace.line)|striptags|replace({ (' at line ' ~ trace.line): '' }) }}:{{ trace.line }}{{ trace.function ? ')' }}
|
|
{%- endif %}
|