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

chore: remove err from dep not found info log

parent 0462f91e
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,8 @@ async function getDependency(name, retries = 5) { ...@@ -136,7 +136,8 @@ async function getDependency(name, retries = 5) {
return null; return null;
} }
if (err.statusCode === 404) { if (err.statusCode === 404) {
logger.info({ err, name }, `Dependency not found`); logger.info({ name }, `Dependency not found`);
logger.debug({ err });
return null; return null;
} }
if (err.name === 'ParseError') { if (err.name === 'ParseError') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment