Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleaned out logs a little #271

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading