Skip to content

Commit c2b1033

Browse files
committed
fix: improve logging message format for orphan runner judgment
1 parent 1baf4af commit c2b1033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ async function lastChanceCheckOrphanRunner(runner: RunnerList): Promise<boolean>
234234
if (isOfflineAndBusy) {
235235
isOrphan = true;
236236
}
237-
logger.info(`Runner is judged to '${runner.instanceId}' ${isOrphan ? 'be' : 'not be'} orphaned.`);
237+
logger.info(`Runner '${runner.instanceId}' is judged to ${isOrphan ? 'be' : 'not be'} orphaned.`);
238238
return isOrphan;
239239
}
240240

0 commit comments

Comments
 (0)