Flow Actions
Last updated
Was this helpful?
Last updated
Was this helpful?
debug
AttributeIn FLAT, every flow action can have a debug
attribute. Its value is a comma-separated list of log topics:
Usually actions can be debugged by type, for example to debug all request
or template
actions. Debug topics allow you to selectively filter debug output of one or more specific actions.
The debug topic template
yields output of all three template
actions.
The debug topic overrides
yields output of the two latter actions.
The debug topic special-topic
yields output of only the last action.
Specifying debug
on a sub-flow
action, automatically applies the debug topic to all actions in that sub-flow.
sub.xml
:
The debug topic foo
yields output of all actions in sub.xml
.
The debug topic bar
yields output only of the last template in sub.xml
.
This will log the content of the variable $foo
if the topic foo
has been selected.
There are some special purpose actions for :
See for more information.
📎 Note that there is also a . It can be used to create your own debug messages. Of course, it can also be filtered with debug topics.