The logging statement is used to log a message in the log files maintained by the Process Execution Engine. Log messages are useful to debug the behavior of your code, especially in automatic activities.
Syntax
logMessage "message to log" [using [severity = <severity>] [, detail = <detail>] ]
Severity levels
The following are severity levels that can be used with the logging statement:
You can choose the severity level you want to display in the Engine logs in the Execution Console.
Example
orderName = 1 customer = 1 logMessage "Order " + orderNumber + " from customer " + customer + "was aborted" using severity = SEVERE