We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d13cb commit 1c715c6Copy full SHA for 1c715c6
src/util/orderUtil.js
@@ -38,7 +38,7 @@ export function getIncorrectPixels(client) {
38
}
39
40
41
- 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) }%`);
42
return shuffle(wrong, 'desc').map((i) => i[0]);
43
44
0 commit comments