(workspaceKey: string)
| 91 | } |
| 92 | |
| 93 | function resolveDaemonLogPath(workspaceKey: string): string | null { |
| 94 | const override = process.env.XCODEBUILDMCP_DAEMON_LOG_PATH?.trim(); |
| 95 | if (override) { |
| 96 | return override; |
| 97 | } |
| 98 | |
| 99 | return logPathForWorkspaceKey(workspaceKey); |
| 100 | } |
| 101 | |
| 102 | function ensureLogDir(logPath: string): void { |
| 103 | const dir = dirname(logPath); |
no test coverage detected