Removee debug_msgs feature.

This commit is contained in:
Stephen Chung
2020-03-18 22:03:50 +08:00
parent 019e73bc7e
commit 0dc51f8e59
8 changed files with 6 additions and 52 deletions

View File

@@ -165,16 +165,6 @@ impl Engine<'_> {
def_val: Option<&Dynamic>,
pos: Position,
) -> Result<Dynamic, EvalAltResult> {
debug_println!(
"Calling function: {} ({})",
fn_name,
args.iter()
.map(|x| (*x).type_name())
.map(|name| self.map_type_name(name))
.collect::<Vec<_>>()
.join(", ")
);
// First search in script-defined functions (can override built-in)
if let Ok(n) = self
.script_functions