ue5_read_log
Read recent lines from the Unreal Engine 5 output log. Optionally filter to errors or warnings; tail-based reading handles multi-GB logs without loading them fully.
Instructions
Read recent lines from the UE5 output log. Optionally filter to only Error or Warning severity. Reads from the tail of the file to avoid loading multi-GB logs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter | No | Severity filter: All, Error, Warning, or Display (default: All) | |
| maxLines | No | Maximum number of log lines to return (default: 100) | |
| tailBytes | No | Bytes to read from the end of the log file (default: 512000 = 500 KB) |