From 5d49d1235592034458ce875b5d73d024ef23355d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 29 Jun 2020 08:06:23 -0700 Subject: [PATCH] Eliminate some debugging calls to console.log These were not meant to stick around. --- empathy/empathy.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index feff777..5782b78 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -468,11 +468,9 @@ class Ambiguities extends React.PureComponent { for (let word of props.words) { const word_canon = canonize(word); - console.log("Canonized " + word + " to " + word_canon); let found_match = false; for (let set of word_sets) { const set_canon = canonize(set.values().next().value); - console.log("Comparing " + word_canon + " to " + set_canon); if (word_canon === set_canon) { set.add(word); found_match = true;; -- 2.43.0