From 0362090abdb98295f6070e06f847a410a83c7f27 Mon Sep 17 00:00:00 2001 From: Michael B Date: Sat, 30 Dec 2023 13:44:53 +0100 Subject: [PATCH] cleaned out logs a little --- src/interpreter.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interpreter.rs b/src/interpreter.rs index 94db0842..12331abb 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 48531456..364a351d 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); } }