diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts
index aae728ff6c1fc4c5aaa711731bd1be8191033458..cd446964f1361f3108de7fe65fa4723178cd44af 100644
--- a/lib/util/exec/docker/index.ts
+++ b/lib/util/exec/docker/index.ts
@@ -138,9 +138,8 @@ export async function removeDockerContainer(image: string): Promise<void> {
       logger.trace({ image, containerName }, 'No running containers to remove');
     }
   } catch (err) /* istanbul ignore next */ {
-    logger.trace({ err }, 'removeDockerContainer err');
-    logger.info(
-      { image, containerName, cmd },
+    logger.warn(
+      { image, containerName, cmd, err },
       'Could not remove Docker container'
     );
   }