# pw workflows runs errors

> Source: https://parallelworks.com/docs/cli/pw/workflows/runs/errors

## pw workflows runs errors

Show errors from a workflow run

### Synopsis

Extract and display failed jobs and steps from a workflow run with log tails.

```
pw workflows runs errors <slug> [flags]
```

### Examples

```
  # Show errors as JSON (default)
  pw workflows runs errors swift-falcon-17
  
  # Show errors as text
  pw workflows runs errors -o text swift-falcon-17
  
  # Show last 100 lines of logs per failed step
  pw workflows runs errors --tail 100 swift-falcon-17
```

### Options

```
  -h, --help            help for errors
  -o, --output string   Output format (json or text) (default "json")
      --tail int        Lines of log tail per failed step (default 50)
```

### Options inherited from parent commands

```
      --context string         The context to use. Overrides PW_CONTEXT environment variable and current context from config.
      --platform-host string   The Parallel Works ACTIVATE platform host to use. Will override any other platform host settings.
  -v, --verbose                Enable verbose logging
```

### SEE ALSO

* [pw workflows runs](/docs/cli/pw/workflows/runs)	 - Manage workflow runs
