{# html/sections/behavior/_processes.html #}
| Time | TID | Caller | API | Arguments | Status | Return | Repeated |
|---|---|---|---|---|---|---|---|
| {{ call.timestamp|default('') }} | {{ call.thread_id|default('') }} | {{ call.caller|default('') }} {{ call.parentcaller|default('') }} |
{{ call.api|default('') }} |
{% for arg in call.arguments|default([]) %}
{{ arg.name|default('') }}:
{{ arg.pretty_value|default(arg.value|default('')) }} {% endfor %} |
{% if call.status %}success{% else %}failed{% endif %} | {{ call.pretty_return|default(call.return|default('')) }} | {% if call.repeated|default(0) > 0 %}{{ call.repeated }}{% endif %} |