()
| 230 | } |
| 231 | |
| 232 | export function getDebugLogPath(): string { |
| 233 | return ( |
| 234 | getDebugFilePath() ?? |
| 235 | process.env.CLAUDE_CODE_DEBUG_LOGS_DIR ?? |
| 236 | join(getClaudeConfigHomeDir(), 'debug', `${getSessionId()}.txt`) |
| 237 | ) |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Updates the latest debug log symlink to point to the current debug log file. |
no test coverage detected