Skip to content

Commit

Permalink
cleaned out logs a little
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelb committed Dec 30, 2023
1 parent f0d43ee commit 0362090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ impl<T: Interpreter> InterpreterUtils for T {
return Some(i);
}
}
info!("key '{}' not found in interpreter option", name);
// info!("key '{}' not found in interpreter option", name);
None
}
// this is the ugliness required to fetch something from the interpreter options
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ impl EventHandler {
fn index_from_name(&mut self, name: &str, config: &[(Value, Value)]) -> Option<usize> {
for (i, kv) in config.iter().enumerate() {
if name == kv.0.as_str().unwrap() {
info!("looped on key {}", kv.0.as_str().unwrap());
// info!("looped on key {}", kv.0.as_str().unwrap());
return Some(i);
}
}
Expand Down

0 comments on commit 0362090

Please sign in to comment.