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