From 1bfd9fc72e262a30b3db9d7bc6707de3ab5ae25c Mon Sep 17 00:00:00 2001 From: biglyderv Date: Sat, 1 Feb 2025 10:19:10 -0500 Subject: [PATCH] stats --- site.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site.js b/site.js index 39a9670..773ff55 100644 --- a/site.js +++ b/site.js @@ -283,7 +283,7 @@ async function siteCollector(user, path, site, useLimit, data2) { console.log(`Graph is fully repaired`); dat = Object.entries(rankCalc(data, (i == d - 1) ? process.env.matrixIterations : 3, penv, site == 'url')); dat = dat.sort((a, b) => b[1] - a[1]); - console.log(`Graph is calculated`); + console.log(`Graph is calculated with ${dat.length} entries`); let dat2 = {}; for (let d of dat) { dat2[d[0]] = d[1] * 100 + "%";