()
| 107 | } |
| 108 | |
| 109 | function resolveLogLevel(): ReturnType<typeof normalizeLogLevel> { |
| 110 | const raw = process.env.XCODEBUILDMCP_DAEMON_LOG_LEVEL; |
| 111 | if (!raw) { |
| 112 | return null; |
| 113 | } |
| 114 | return normalizeLogLevel(raw); |
| 115 | } |
| 116 | |
| 117 | async function main(): Promise<void> { |
| 118 | const daemonBootstrapStart = Date.now(); |
no test coverage detected