Skip to content

Commit

Permalink
Remove debugging println
Browse files Browse the repository at this point in the history
  • Loading branch information
bjfish committed Jun 2, 2019
1 parent 605c0dc commit 151af82
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/bin/wasmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))?;
}
}

Expand Down

0 comments on commit 151af82

Please sign in to comment.