Log
Octory PRO
Element type: Dictionary
Write text and variables in Octory log.
tip
When creating complex workflows, this action could be useful when debugging.
Keys
Name | Type | Possible values | Required |
---|---|---|---|
Type | String | Log | Required |
Message | String | - | Required |
Condition | Dictionary (Condition) | - |
Detail
Type Required
Type: String
Explanation: The type of the component has to be Log
.
Message Required
Type: String Explanation: The message to write in the log.
Condition
Type: Dictionary (Condition)
Explanation: Allows launch the action only based on a boolean expression.
Example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>ActionSets</key>
<array>
<dict>
<key>Type</key>
<string>Parallel</string>
<key>Triggers</key>
<array>
<string>Termination</string>
</array>
<key>Actions</key>
<array>
<dict>
<key>Type</key>
<string>Log</string>
<key>Message</key>
<string>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</string>
</dict>
</array>
</dict>
</array>
<!-- ... -->
</dict>
</plist>