From f076c04b762289a92ceeada163adf2d23f7718ee Mon Sep 17 00:00:00 2001 From: Syrus Date: Sun, 5 May 2019 12:14:25 -0700 Subject: [PATCH] Moved from println to debug the emscripten entrypoint statement --- lib/emscripten/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/emscripten/src/lib.rs b/lib/emscripten/src/lib.rs index 3a9d53a11..07ae9a2a2 100644 --- a/lib/emscripten/src/lib.rs +++ b/lib/emscripten/src/lib.rs @@ -300,7 +300,7 @@ pub fn run_emscripten_instance( // println!("running emscripten instance"); if let Some(ep) = entrypoint { - println!("Running entry point: {}", &ep); + debug!("Running entry point: {}", &ep); let ep_fn = instance.dyn_func(&ep)?; let arg = unsafe { allocate_cstr_on_stack(instance.context_mut(), args[0]).0 }; //let (argc, argv) = store_module_arguments(instance.context_mut(), args);