From 2aa0e3c765dd7877ecf1e125e53be112c39de200 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Thu, 18 Jul 2019 19:25:35 +0200 Subject: [PATCH] logs: info not warn for docker registry 5xx --- lib/datasource/docker/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datasource/docker/index.js b/lib/datasource/docker/index.js index c232b241be..159e9aab76 100644 --- a/lib/datasource/docker/index.js +++ b/lib/datasource/docker/index.js @@ -173,7 +173,7 @@ async function getManifestResponse(registry, repository, tag) { throw new Error('registry-failure'); } if (err.statusCode >= 500 && err.statusCode < 600) { - logger.warn( + logger.info( { err, registry, -- GitLab