even more debug output

This commit is contained in:
Joeri Exelmans 2025-11-05 10:08:06 +01:00
parent 61ed456c89
commit e499faef3f
2 changed files with 1 additions and 0 deletions

View file

@ -86,6 +86,7 @@ pub fn eval_boolean(s: &str, js_trace: JsValue) -> JsValue {
return JsValue::from_str(format!("failed to parse expression: {}", joined).as_str());
},
};
console::log_1(&JsValue::from_str("evaluating property..."));
// evaluate property on trace
let eval_result = match expr {
Expr::Bool(bool_expr) => BooleanSemantics::eval::<interpolation::Constant>(&bool_expr, &m),