فهرست منبع

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 */ }