Skip to content

Commit

Permalink
silly timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
Ow0cast authored Jul 24, 2023
1 parent b6d13cb commit 1c715c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/orderUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}

Expand Down

0 comments on commit 1c715c6

Please sign in to comment.