We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 135614e commit d7c3e75Copy full SHA for d7c3e75
tests/validator.js
@@ -23,7 +23,7 @@ async function validateLink (linkUrl) {
23
const response = await fetch(linkUrl, { method: 'HEAD' });
24
return response.ok;
25
} catch (error) {
26
- console.log(JSON.stringify(error, null, 2));
+ console.error(JSON.stringify(error, null, 2));
27
return false;
28
}
29
0 commit comments