Skip to content

Commit

Permalink
remove console log to make user experience better
Browse files Browse the repository at this point in the history
  • Loading branch information
justindhillon committed Dec 6, 2023
1 parent 765c017 commit d574af1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/scan/writeBrokenLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ async function writeBrokenLinks(links, PATH, fluff) {
});
});
if (result.status === "dead") writeToFile(link, PATH, fluff);
} catch (err) {
console.error('Error: failed to validate', link, err);
}
} catch {} // This is in a try catch to skip over unsupported urls
}
return;
};
Expand Down

0 comments on commit d574af1

Please sign in to comment.