MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / resolveDaemonLogPath

Function resolveDaemonLogPath

src/daemon.ts:93–100  ·  view source on GitHub ↗
(workspaceKey: string)

Source from the content-addressed store, hash-verified

91}
92
93function 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
102function ensureLogDir(logPath: string): void {
103 const dir = dirname(logPath);

Callers 1

mainFunction · 0.85

Calls 1

logPathForWorkspaceKeyFunction · 0.90

Tested by

no test coverage detected