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]); }