From 3725417f43a16ca548fedef12a396fd477bb7142 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Mon, 9 Mar 2020 19:54:44 +0100 Subject: [PATCH] logs: downgrade docker warn to info --- lib/util/exec/docker/index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index f1043fa1bc..271c481194 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -127,10 +127,8 @@ export async function removeDockerContainer(image): Promise<void> { logger.trace({ image, containerName }, 'No running containers to remove'); } } catch (err) { - logger.warn( - { image, containerName, err }, - 'Error removing Docker container' - ); + logger.trace({ err }, 'removeDockerContainer err'); + logger.info({ image, containerName }, 'Could not remove Docker container'); } } -- GitLab