From ea8abc96356a467cd58a8714d5becae7e3d41b09 Mon Sep 17 00:00:00 2001 From: ByteDice Date: Fri, 17 Jan 2025 16:38:32 +0100 Subject: [PATCH] renamed debug log titles --- global/globalScript.js | 2 +- script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/global/globalScript.js b/global/globalScript.js index ea33975..e6cbb29 100644 --- a/global/globalScript.js +++ b/global/globalScript.js @@ -140,7 +140,7 @@ document.addEventListener("DOMContentLoaded", async function() { } pauseAnimBtn(localStorage["isAnimating"] || "true") - debugPrint("Pause button state", isAnimating) + debugPrint("isAnimating", isAnimating) if (showLoading != "true") { removeLoadingScreen() diff --git a/script.js b/script.js index b0e275f..b21e7b4 100644 --- a/script.js +++ b/script.js @@ -15,7 +15,7 @@ function addStars() { let randX = randomInt(0, 256) let randY = randomInt(0, 256) - debugPrint("Star pos", `[x${randX}, y${randY}]`) + debugPrint("Star pos", `[x: ${randX}, y: ${randY}]`) starNoise.style.top = `round(calc(${randX}px * var(--pxDensity)), var(--pxDensityPx))` starNoise.style.left = `round(calc(${randY}px * var(--pxDensity)), var(--pxDensityPx))`