From 9f978d75bdd2d81ed8fde187b48f9cf35279164a Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Sun, 14 Jun 2020 08:57:58 +0200 Subject: [PATCH] logs: info only for git raw refs lookup --- lib/datasource/git-refs/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datasource/git-refs/index.ts b/lib/datasource/git-refs/index.ts index a1dfc904480f56..afd75aed8c0bd0 100644 --- a/lib/datasource/git-refs/index.ts +++ b/lib/datasource/git-refs/index.ts @@ -71,7 +71,7 @@ export async function getRawRefs({ await globalCache.set(cacheNamespace, lookupName, refs, cacheMinutes); return refs; } catch (err) { - logger.error({ err }, `Git-Raw-Refs lookup error in ${lookupName}`); + logger.info({ err }, `Git-Raw-Refs lookup error in ${lookupName}`); } return null; }