Removed logging statement

This commit is contained in:
Mike Lynch 2025-03-26 18:00:22 +11:00
parent 03c87f21de
commit 4f1e73d498

View File

@ -68,7 +68,6 @@ function parse_histogram(convert_out) {
function colour_visible(hist, colour) {
const hexcolour = colour.formatHex().toUpperCase();
console.log(colour, hexcolour, hist.get(hexcolour));
return hist.get(hexcolour) > VISIBLE_DOG;
}