get_verse_diagnostics
Parse UEFN logs to retrieve Verse build errors and warnings, deduplicate them, and return structured JSON with file paths, line/column locations, and error codes.
Instructions
Get the latest Verse compile diagnostics from UEFN logs.
Parses the UnrealEditorFortnite.log file for VerseBuild errors and warnings, deduplicates them, and returns structured JSON with file paths, line/column locations, error codes, and messages.
Returns: str: JSON object with fields: - ok (bool): True if no errors found - source (str): Always "uefn-log" - error_count (int): Number of errors - warning_count (int): Number of warnings - diagnostics (list): Array of diagnostic objects with: - file, line, column, endLine, endColumn, severity, code, message, timestamp, raw - log_path (str): Path to the log file read - log_exists (bool): Whether the log file was found
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |