diff --git a/src/server/apps.ts b/src/server/apps.ts index bb69e71..3910355 100644 --- a/src/server/apps.ts +++ b/src/server/apps.ts @@ -677,6 +677,8 @@ async function runApp(dir: string, port: number) { const chunk = decoder.decode(value) const lines = chunk.split('\n').map(l => l.trimEnd()).filter(Boolean) for (const text of lines) { + // Skip health check logs (e.g., "200 GET http://localhost:3001/ok (0ms)") + if (/\bGET\b.*\/ok\b/.test(text)) continue info(app, text) writeLogLine(dir, streamType, text) app.logs = (app.logs ?? []).slice(-MAX_LOGS)