get_log_lines
Retrieve recent Unreal Engine Output Log entries. Filter by category substring and minimum verbosity, returning up to 1000 lines at or above the specified severity.
Instructions
Read recent UE Output Log entries from the in-process ring buffer. Supports category substring filter and minimum verbosity filter. Returns up to count lines (default 100, max 1000) at or above the requested severity.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Max lines to return (default 100, max 1000). | |
| category_filter | No | Case-insensitive substring filter on log category (e.g. 'LogTemp'). | |
| min_verbosity | No | Return lines at or above this severity. Default 'Log'. |