Workflow Logs
View logs from workflow steps
Usage
Terminal
dxflow workflow logs <IDENTITY> [OPTIONS]
Options
| Flag | Shorthand | Description | Type | Default |
|---|---|---|---|---|
--stdout | Show only stdout logs | bool | false | |
--stderr | Show only stderr logs | bool | false | |
--step | -s | Show logs for specific step | int | 0 |
--count | -c | Number of lines to show | int | 9 |
--live | -l | Stream logs in real-time | bool | false |
Output
Each line is printed as [step-{index}.out] output or [step-{index}.err] output, so its step and stream are visible at a glance.
--count is the tail depth per stream: it keeps the last N lines of stdout and the last N lines of stderr, for every step in range. Set --stdout or --stderr to narrow to one stream, and --step to narrow to one step. With neither stream flag set, both are returned.