(index: number)
| 4578 | * @returns Log data or null if not found |
| 4579 | */ |
| 4580 | export async function getLogByIndex(index: number): Promise<LogOption | null> { |
| 4581 | const logs = await loadMessageLogs() |
| 4582 | return logs[index] || null |
| 4583 | } |
| 4584 | |
| 4585 | /** |
| 4586 | * Looks up unresolved tool uses in the transcript by tool_use_id. |
nothing calls this directly
no test coverage detected