From 09186488ac2a9a794231a2f7847b186598cd41b2 Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Sun, 5 Jul 2020 08:22:32 +0200 Subject: [PATCH] logs: log depName and scheme when failling to satisfy a constraint --- lib/util/exec/docker/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index df9ee26269392a..c7593f8f16bdc3 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -103,7 +103,7 @@ async function getDockerTag( return 'latest'; } logger.warn( - { constraint }, + { depName, constraint, scheme }, 'Failed to find a tag satisfying constraint, using "latest" tag instead' ); return 'latest';