From 0002b2e50b5f9a6c136869b15fb3ae14c51a5086 Mon Sep 17 00:00:00 2001 From: ByteDice Date: Fri, 17 Jan 2025 16:37:06 +0100 Subject: [PATCH] removed useless debug log --- global/globalScript.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/global/globalScript.js b/global/globalScript.js index 81313d7..ea33975 100644 --- a/global/globalScript.js +++ b/global/globalScript.js @@ -127,10 +127,9 @@ document.addEventListener("DOMContentLoaded", async function() { setLoadingProgress("Calculating pixel density...") calcPixelDensity() - debugPrint("pxDensity", pxDensity) - if (densityWidth > densityHeight) { debugPrint("pxDensity Direction", `Width, ${densityWidth}`) } - else { debugPrint("pxDensity Direction", `Height, ${densityHeight}`) } + if (densityWidth > densityHeight) { debugPrint("pxDensity", `Width, ${pxDensity}`) } + else { debugPrint("pxDensity", `Height, ${pxDensity}`) } setLoadingProgress("adding navBar...") await loadNavBarJson()