The LOG node logs messages and data during flow execution, providing visibility into flow behavior for debugging and monitoring.Documentation Index
Fetch the complete documentation index at: https://hypha-docs.plinqx.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
LOG nodes enable:- Debugging: Log intermediate values and states
- Observability: Track flow execution progress
- Monitoring: Monitor flow behavior in production
- Troubleshooting: Diagnose issues with detailed logs
Configuration
Log Level
Select log level:- Info: General information (default)
- Warn: Warning messages
- Error: Error conditions
- Debug: Detailed debugging information
Message
Log message (supports expressions):Data
Additional data to log (supports expressions):Expression Support
Log messages and data support expressions:- Variable Access:
{{node.field}} - Nested Access:
{{node.response.data.id}} - Functions: String, number, date functions
- Calculations: Mathematical operations
Use Cases
Debugging
Log intermediate values:Monitoring
Track execution progress:Error Context
Log context before errors:Output
LOG node provides output:Best Practices
Use Appropriate Levels
Use appropriate log levels (info, warn, error, debug)
Include Context
Include relevant context in log messages
Avoid Sensitive Data
Don’t log sensitive information (passwords, tokens)
Structured Logging
Use structured data for better log analysis
Next Steps
TRY Node
Log errors in catch blocks
Transform Node
Transform data before logging