From 7a5abce84d4a0d8d786299f0f65660a74a503c02 Mon Sep 17 00:00:00 2001 From: Victor Boissiere Date: Thu, 12 Jun 2025 14:15:30 +0200 Subject: [PATCH] fix: scale down log level Signed-off-by: Victor Boissiere --- lambdas/functions/control-plane/src/scale-runners/scale-down.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambdas/functions/control-plane/src/scale-runners/scale-down.ts b/lambdas/functions/control-plane/src/scale-runners/scale-down.ts index 10d5615b43..611d4d217c 100644 --- a/lambdas/functions/control-plane/src/scale-runners/scale-down.ts +++ b/lambdas/functions/control-plane/src/scale-runners/scale-down.ts @@ -130,7 +130,7 @@ async function removeRunner(ec2runner: RunnerInfo, ghRunnerIds: number[]): Promi if (statuses.every((status) => status == 204)) { await terminateRunner(ec2runner.instanceId); - logger.debug(`AWS runner instance '${ec2runner.instanceId}' is terminated and GitHub runner is de-registered.`); + logger.info(`AWS runner instance '${ec2runner.instanceId}' is terminated and GitHub runner is de-registered.`); } else { logger.error(`Failed to de-register GitHub runner: ${statuses}`); }