From 55034aadefbd144e2b09cc65a9a60c884c1e9472 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Fri, 24 Apr 2020 18:15:55 +0200 Subject: [PATCH] logs: debug not warn for helm chart 404 --- lib/datasource/helm/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datasource/helm/index.ts b/lib/datasource/helm/index.ts index e4ad15ec88..b0a36f939f 100644 --- a/lib/datasource/helm/index.ts +++ b/lib/datasource/helm/index.ts @@ -39,7 +39,7 @@ export async function getRepositoryData( return null; } if (err.statusCode === 404 || err.code === 'ENOTFOUND') { - logger.warn({ err }, 'index.yaml lookup error'); + logger.debug({ err }, 'Helm Chart not found'); return null; } if ( -- GitLab