Log
Log
Writes a message to the file log, which records log entries specifically for the current processing file.
This is useful for tracking progress, debugging, and recording important information related to the file being processed in the flow.
Type
The severity or category of the log message. Common options include:
Debug
– Detailed messages for troubleshooting.Info
– General informational messages (default).Warning
– Highlights non-critical issues.Error
– Indicates an error during processing.
Log type affects how messages are displayed or filtered in the file’s log.
Message
The text to write to the log.
You can include variables using {}
syntax to insert dynamic content (e.g., Processing file: {File.Name}
).
Example
To log an informational message about the current file:
- Type:
Info
- Message:
Finished processing {File.Name}
This will append an info entry to the log specific to the file currently being processed.