Problem
Logs queries use SELECT *, which transfers and parses more data than necessary for the table view.
Proposed change
- Select only visible columns for the logs table.
- Fetch full row data on demand when opening the detail modal.
Acceptance criteria
- Logs view loads faster on slow networks.
- Detail modal still shows all fields when opened.