From 467f41bc1d5c41a12062c22ec9d1dc4b47ff42f8 Mon Sep 17 00:00:00 2001 From: Anett Seeker Date: Mon, 20 Jun 2022 14:55:46 +0200 Subject: [PATCH] Print color code in simulation --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 6059493..3c4b61c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -193,6 +193,7 @@ fn simulate(start: &Word, target: &Word) -> Option { } let color_code = w.match_code(target); + debug!("Wordle hint: {}", color_code); let constraints = ConstraintSet::try_from((w.to_string().as_ref(), color_code.as_ref()));