antonio-mello-ai commented on PR #63467: URL: https://github.com/apache/airflow/pull/63467#issuecomment-4217752807
@bbovenzi Fair point — I should have caught this myself before posting. Won't happen again. The root issue was that the grouping logic collapsed all lines inside a `::group::` into a single element in the parsedLogs array, so search only ever saw one entry per group. The ForceOpenDetails approach couldn't fix that. I restructured the data model: lines inside groups now stay as individual entries with group metadata, and a `useLogGroups` hook handles expand/collapse + index mapping. Search works per-line, and navigating to a match inside a collapsed group auto-expands it. Tested with breeze `--dev-mode` — searching "INFO" in a task with Pre/Post execution groups now returns 18 individual matches instead of 3. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
