In
{% set caller = dispatchCall.caller %}
{% if caller.line %}
{% set link = caller.file|file_link(caller.line) %}
{% if link %}
{{ caller.name }}
{% else %}
{{ caller.name }}
{% endif %}
{% else %}
{{ caller.name }}
{% endif %}
line {{ caller.line }}
{{ caller.file|file_excerpt(caller.line)|replace({
'#DD0000': 'var(--highlight-string)',
'#007700': 'var(--highlight-keyword)',
'#0000BB': 'var(--highlight-default)',
'#FF8000': 'var(--highlight-comment)'
})|raw }}
|
Bus |
{{ dispatchCall.bus }} |
Message |
{{ profiler_dump(dispatchCall.message.value, maxDepth=2) }} |
Envelope stamps when dispatching |
{% for item in dispatchCall.stamps %}
{{ profiler_dump(item) }}
{% else %}
No items
{% endfor %}
|
Envelope stamps after dispatch |
{% for item in dispatchCall.stamps_after_dispatch %}
{{ profiler_dump(item) }}
{% else %}
No items
{% endfor %}
|
Exception |
{{ profiler_dump(dispatchCall.exception.value, maxDepth=1) }}
|