From cbcb37ddb5ba915b73ae9466f6c362f73fc8ce5b Mon Sep 17 00:00:00 2001 From: "DESKTOP-KSVGT20\\shkim" Date: Fri, 1 May 2026 23:02:57 +0900 Subject: [PATCH] Log companion health checks --- suno-companion.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/suno-companion.ps1 b/suno-companion.ps1 index c1f68b7..0856e50 100644 --- a/suno-companion.ps1 +++ b/suno-companion.ps1 @@ -143,6 +143,7 @@ try { } if ($request.Method -eq "GET" -and $request.Path -eq "/health") { + Write-Host "Health check OK: $(Get-Date -Format 'HH:mm:ss')" Write-Response $stream 200 "OK" (@{ ok = $true; outputRoot = $OutputRoot } | ConvertTo-Json -Compress) continue }