(sessionDir: string)
| 97 | |
| 98 | /** Path to session-scoped platform subprocess output, such as Apple runner xcodebuild logs. */ |
| 99 | export function resolveSessionRunnerLogPath(sessionDir: string): string { |
| 100 | return path.join(sessionDir, 'runner.log'); |
| 101 | } |
| 102 | |
| 103 | /** Path to request-scoped daemon diagnostics for this session. */ |
| 104 | export function resolveSessionRequestLogPath( |
no outgoing calls
no test coverage detected