Skip to content

Commit 43468a7

Browse files
committed
Remove logging of runner ID marking in addGhRunnerIdToEC2InstanceTag function
1 parent 9883b0b commit 43468a7

File tree

1 file changed

+0
-1
lines changed
  • lambdas/functions/control-plane/src/scale-runners

1 file changed

+0
-1
lines changed

lambdas/functions/control-plane/src/scale-runners/scale-up.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,6 @@ async function createRegistrationTokenConfig(
419419
async function addGhRunnerIdToEC2InstanceTag(instanceId: string, runnerId: string): Promise<void> {
420420
try {
421421
await tag(instanceId, [{ Key: 'ghr:github_runner_id', Value: runnerId }]);
422-
logger.info(`Runner '${instanceId}' marked with ${runnerId}.`);
423422
} catch (e) {
424423
logger.error(`Failed to mark runner '${instanceId}' with ${runnerId}.`, { error: e });
425424
}

0 commit comments

Comments
 (0)