From dffc0d5df013a60bb3cc380d34bfc1ef3c151500 Mon Sep 17 00:00:00 2001 From: creinkin <10441248+creinkin@users.noreply.github.com> Date: Mon, 6 Feb 2023 10:07:05 -0500 Subject: [PATCH] only console log the final table --- js/linkcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/linkcheck.js b/js/linkcheck.js index 9dff4ed..f641aa2 100644 --- a/js/linkcheck.js +++ b/js/linkcheck.js @@ -22,7 +22,7 @@ for (i = 0; i < records.length; i++) { /*console.log(endpoint, data.status);*/ }) .catch((error) => { - console.log([doc_id, endpoint, error.code].join('\t')) + // console.log([doc_id, endpoint, error.code].join('\t')) failed_links.push({documentId: doc_id, url: endpoint, error: error.code}) })}) );