Path to session-scoped app log file. Agent can grep this for token-efficient debugging.
(sessionName: string)
| 83 | |
| 84 | /** Path to session-scoped app log file. Agent can grep this for token-efficient debugging. */ |
| 85 | resolveAppLogPath(sessionName: string): string { |
| 86 | return path.join(this.resolveSessionDir(sessionName), 'app.log'); |
| 87 | } |
| 88 | |
| 89 | resolveAppLogPidPath(sessionName: string): string { |
| 90 | return path.join(this.resolveSessionDir(sessionName), 'app-log.pid'); |
no test coverage detected