logs: info only for git raw refs lookup

This commit is contained in:
Rhys Arkins 2020-06-14 08:57:58 +02:00
parent e834f2b826
commit 9f978d75bd

View file

@ -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;
}