MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / logHydrationResult

Function logHydrationResult

src/runtime/bootstrap-runtime.ts:90–100  ·  view source on GitHub ↗
(hydration: MCPSessionHydrationResult)

Source from the content-addressed store, hash-verified

88}
89
90function logHydrationResult(hydration: MCPSessionHydrationResult): void {
91 if (!hydration.hydrated) {
92 return;
93 }
94
95 const refreshStatus = hydration.refreshScheduled ? 'scheduled' : 'not scheduled';
96 log(
97 'info',
98 `[Session] Hydrated MCP session defaults; simulator metadata refresh ${refreshStatus}.`,
99 );
100}
101
102function resolveCwdOverride(): string | undefined {
103 const raw = process.env.XCODEBUILDMCP_CWD;

Callers 1

bootstrapRuntimeFunction · 0.85

Calls 1

logFunction · 0.90

Tested by

no test coverage detected