Ver código fonte

remove extra debug message

Ron Williams 2 anos atrás
pai
commit
dc6c8f93b9
1 arquivos alterados com 0 adições e 1 exclusões
  1. 0 1
      aml/src/term_object.rs

+ 0 - 1
aml/src/term_object.rs

@@ -865,7 +865,6 @@ where
             name_string().then(target()).map_with_context(|(source, target), context| {
                 let handle = context.namespace.search(&source, &context.current_scope);
                 let result = AmlValue::Boolean(handle.is_ok());
-                log::error!("{:?} was {}found", &source, if handle.is_ok() { "" } else { "not " });
                 if let Ok((_name, _handle)) = handle {
                     match target {
                         Target::Null => { /* just return the result of the check */ }