Remove log print.

This commit is contained in:
Stephen Chung
2022-09-03 12:26:55 +08:00
parent 79eb626386
commit 75512bfd2f
2 changed files with 5 additions and 2 deletions

View File

@@ -278,13 +278,12 @@ impl Engine {
c.get(&hash).unwrap().as_ref().unwrap()
}
None => {
println!("Exec {name} with {:?}", arg_values);
return self
.exec_fn_call(
None, global, caches, lib, name, *hashes, arg_values, false, false,
pos, level,
)
.map(|(v, ..)| v);
.map(|(v, ..)| v)
}
}
};