Skip to content

Commit

Permalink
add more debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshvanahalli committed Oct 10, 2024
1 parent 62d76d0 commit 93fca3d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions arbitrator/jit/src/prepare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,13 @@ pub fn prepare_env(json_inputs: PathBuf, debug: bool) -> eyre::Result<WasmEnv> {
.insert(*module_hash, module_asm.as_vec().into());
}
}

eprintln!(
"env Info. OS- {}, Arch- {}",
env::consts::OS,
env::consts::ARCH
);
eprintln!("localTarget {}", local_target());

Ok(env)
}

0 comments on commit 93fca3d

Please sign in to comment.