Documentation / Tutorials / Tutorials & How to’s

Supported Output Redirection

/ Tutorials & How to’s / Supported Output Redirection

Changes the default output to the specified output or adds another output medium

Example:
[aw2.run module.m1 /]
runs the module and throws the output to the screen.

[aw2.run module.m1 log=true/]
will throw the output to the log file

One of the most common usage is setting the result of an operation to a variable
[aw2.run module.m1 set=m1_result/]
will set the variable m1_result to the result of the module
console=true
Will output a copy to the Console. The original output will still happen

log=true
Will output a copy to the Log File. The original output will still happen.

set=<variable name>
Will set the result to a variable. The original output will not happen.

no_output=true - Will not output anything

Categories
Most Popular