We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7f63bf + 912d507 commit 9a0f22eCopy full SHA for 9a0f22e
examples/hermit-wasm/src/main.rs
@@ -10,7 +10,7 @@ use env_logger::Builder;
10
#[cfg(target_os = "hermit")]
11
use hermit as _;
12
use hermit_wasm::run_preview1;
13
-use log::{LevelFilter, info};
+use log::{LevelFilter, debug, info};
14
15
#[derive(Parser, Debug)]
16
#[command(author, version, about, long_about = None)]
@@ -43,6 +43,7 @@ pub fn main() -> Result<()> {
43
// First step is to create the Wasm execution engine with some config.
44
// Currently, we are using the default configuration.
45
let config = wasmtime::Config::new();
46
+ debug!("Configuration of Wasmtime: {config:?}");
47
48
if CONFIG.module_and_args.is_empty() {
49
eprintln!("No WebAssembly module specified. Please provide a .wasm file to run.");
0 commit comments