Skip to content
Snippets Groups Projects
Commit 85117fd0 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

refactor(orb): better logging on errors

parent de33fa01
No related branches found
No related tags found
No related merge requests found
...@@ -53,17 +53,12 @@ async function getPkgReleases({ lookupName }) { ...@@ -53,17 +53,12 @@ async function getPkgReleases({ lookupName }) {
await renovateCache.set(cacheNamespace, cacheKey, dep, cacheMinutes); await renovateCache.set(cacheNamespace, cacheKey, dep, cacheMinutes);
return dep; return dep;
} catch (err) /* istanbul ignore next */ { } catch (err) /* istanbul ignore next */ {
logger.debug({ err }, 'CircleCI Orb lookup error');
if (err.statusCode === 404 || err.code === 'ENOTFOUND') { if (err.statusCode === 404 || err.code === 'ENOTFOUND') {
logger.info({ lookupName }, `CircleCI Orb lookup failure: not found`); logger.info({ lookupName }, `CircleCI Orb lookup failure: not found`);
logger.debug({
err,
});
return null; return null;
} }
logger.warn( logger.warn({ lookupName }, 'CircleCI Orb lookup failure: Unknown error');
{ err, lookupName },
'CircleCI Orb lookup failure: Unknown error'
);
return null; return null;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment