From 4f1e73d4984a50a8a3b3e0b281b30529f9c4843a Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Wed, 26 Mar 2025 18:00:22 +1100 Subject: [PATCH] Removed logging statement --- poptimal.js | 1 - 1 file changed, 1 deletion(-) diff --git a/poptimal.js b/poptimal.js index ff2a093..0857dd2 100644 --- a/poptimal.js +++ b/poptimal.js @@ -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; }