fix: remove dbg!() output

This commit is contained in:
Luke D. Jones
2021-07-31 23:03:17 +12:00
parent 81a88263a9
commit 0599be02dc
2 changed files with 2 additions and 2 deletions

View File

@@ -364,8 +364,6 @@ fn handle_led_mode(
.collect();
for command in commands.iter().filter(|command| {
for mode in &supported.stock_led_modes {
dbg!(mode);
dbg!(command);
if command.contains(&<&str>::from(mode).to_lowercase()) {
return true;
}