{{call.timestamp}} |
{{call.thread_id}} |
{{call.caller}} {{call.parentcaller}} |
{{call.api}} |
{% for argument in call.arguments %}
{{argument.name}}:
{% if argument.pretty_value %}
{{argument.pretty_value}}
{% else %}
{{argument.value}}
{% endif %}
{% endfor %}
|
{% if call.status %}
success
{% else %}
failed
{% endif %}
|
{% if call.pretty_return %}
{{call.pretty_return}} |
{% else %}
{{call.return}} |
{% endif %}
{% if call.repeated > 0 %}
{{call.repeated}}
{% if call.repeated > 1 %}
times
{% else %}
time
{% endif %}
{% endif %}
|