Skip to content

Commit

Permalink
logs: info only for git raw refs lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jun 14, 2020
1 parent e834f2b commit 9f978d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datasource/git-refs/index.ts
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9f978d7

Please sign in to comment.