From 1c715c6afe46f7bce4ef29a9a678dab2003156f3 Mon Sep 17 00:00:00 2001 From: owuh <57546895+Ow0cast@users.noreply.github.com> Date: Mon, 24 Jul 2023 00:46:27 -0400 Subject: [PATCH] silly timestamp --- src/util/orderUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/orderUtil.js b/src/util/orderUtil.js index 1dc3455..eeecf93 100644 --- a/src/util/orderUtil.js +++ b/src/util/orderUtil.js @@ -38,7 +38,7 @@ export function getIncorrectPixels(client) { } } - console.log(`Pixel count: ${pixelCount}; Wrong pixels: ${wrong.length} (${(100 - (wrong.length / pixelCount * 100)).toFixed(2)}%); Ignoring non-black white pixels: ${(100 - ((wrong.length - nonWhiteCount) / pixelCount * 100)).toFixed(2) }%`); + console.log(`${Date()} Pixel count: ${pixelCount}; Wrong pixels: ${wrong.length} (${(100 - (wrong.length / pixelCount * 100)).toFixed(2)}%); Ignoring non-black white pixels: ${(100 - ((wrong.length - nonWhiteCount) / pixelCount * 100)).toFixed(2) }%`); return shuffle(wrong, 'desc').map((i) => i[0]); }