Skip to content

Commit

Permalink
Remove unused println
Browse files Browse the repository at this point in the history
  • Loading branch information
d0iasm committed Nov 25, 2019
1 parent a3abf93 commit 160f36e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/bin/wasmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,9 +558,6 @@ fn execute_wasm(options: &Run) -> Result<(), String> {
.map_err(|e| format!("Can't convert from wast to wasm: {:?}", e))?;
}

println!("execute_wasm() {:#?}", options);
println!("execute_wasm() {:#?}", options.backend);

let compiler: Box<dyn Compiler> = match get_compiler_by_backend(options.backend, options) {
Some(x) => x,
None => return Err("the requested backend is not enabled".into()),
Expand Down

0 comments on commit 160f36e

Please sign in to comment.