From b75d1fea57c51f28a91234c74f19cf1feedcfed6 Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Sat, 19 Oct 2024 09:26:05 +0200 Subject: [PATCH] chore: dangling debug statement (#32025) --- lib/util/exec/docker/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index 67728a5bcac667..8a1f548ff8f824 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -175,6 +175,9 @@ export async function removeDanglingContainers(): Promise { const containerLabel = getContainerLabel( GlobalConfig.get('dockerChildPrefix'), ); + logger.debug( + `Removing dangling child containers with label ${containerLabel}`, + ); const res = await rawExec( `docker ps --filter label=${containerLabel} -aq`, {