浏览代码

remove extra debug message

Ron Williams 2 年之前
父节点
当前提交
dc6c8f93b9
共有 1 个文件被更改,包括 0 次插入1 次删除
  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 */ }