From a938008a9993e5a839e3234964972f44b3767cfa Mon Sep 17 00:00:00 2001 From: Evan You Date: Sun, 10 Jun 2018 11:37:24 -0400 Subject: [PATCH] workflow: do not log if link check is successful --- scripts/checkLinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkLinks.js b/scripts/checkLinks.js index e0626b9cf7..b479db3989 100644 --- a/scripts/checkLinks.js +++ b/scripts/checkLinks.js @@ -15,7 +15,7 @@ async function checkLink (file, link, n) { if (result.statusCode !== 200) { throw new Error('error') } else { - console.log('[OK]', link, result.statusCode) + // console.log('[OK]', link, result.statusCode) } } catch (e) { console.warn('[!!]', link, `${file}:${parseInt(n) + 1}`)