Flow Actions
Test Actions
There are some special purpose actions for testing:
debug Attribute
debug AttributeIn FLAT, every flow action can have a debug attribute. Its value is a comma-separated list of log topics:
debug="topic1, topic2"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.
See Selective Action Debugging for more information.
<flow>
<template>{"v": 0}</template>
<template debug="overrides">{"v": 1}</template>
<template debug="overrides, special-topic">{"v": 2}</template>
</flow>The debug topic
templateyields output of all threetemplateactions.The debug topic
overridesyields output of the two latter actions.The debug topic
special-topicyields 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.
<flow>
<template>{"v": 1}</template>
<sub-flow src="sub.xml" debug="foo"/>
</flow>sub.xml:
<flow>
<template>{"v": 2}</template>
<template debug="bar">{"v": 3}</template>
</flow>The debug topic
fooyields output of all actions insub.xml.The debug topic
baryields output only of the last template insub.xml.
📎 Note that there is also a
debugaction. It can be used to create your own debug messages. Of course, it can also be filtered with debug topics.
<debug level="info" debug="foo" xpath="$foo"/>This will log the content of the variable $foo if the topic foo has been selected.
Last updated
Was this helpful?