diff --git a/src/interpreter.rs b/src/interpreter.rs index 94db084..12331ab 100644 --- a/src/interpreter.rs +++ b/src/interpreter.rs @@ -290,7 +290,7 @@ impl 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 diff --git a/src/lib.rs b/src/lib.rs index 4853145..364a351 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -212,7 +212,7 @@ impl EventHandler { fn index_from_name(&mut self, name: &str, config: &[(Value, Value)]) -> Option { 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); } }