From 151af82e31a4412b8914807250ed0e12c3218ae3 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Sun, 2 Jun 2019 15:51:52 -0500 Subject: [PATCH] Remove debugging println --- src/bin/wasmer.rs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/bin/wasmer.rs b/src/bin/wasmer.rs index c97aa7c3ce6..848b1044e87 100644 --- a/src/bin/wasmer.rs +++ b/src/bin/wasmer.rs @@ -557,14 +557,11 @@ fn execute_wasm(options: &Run) -> Result<(), String> { .map(|arg| arg.as_str()) .map(|x| Value::I32(x.parse().unwrap())) .collect(); - println!( - "{:?}", - instance - .dyn_func("main") - .map_err(|e| format!("{:?}", e))? - .call(&args) - .map_err(|e| format!("{:?}", e))? - ); + instance + .dyn_func("main") + .map_err(|e| format!("{:?}", e))? + .call(&args) + .map_err(|e| format!("{:?}", e))?; } }