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.
1 parent a55ac1f commit d82a792Copy full SHA for d82a792
src/bin/miri.rs
@@ -38,7 +38,7 @@ impl<'a> CompilerCalls<'a> for MiriCompilerCalls {
38
let mir_map = state.mir_map.unwrap();
39
40
let (node_id, span) = state.session.entry_fn.borrow().expect("no main or start function found");
41
- println!("found `main` function at: {:?}", span);
+ debug!("found `main` function at: {:?}", span);
42
43
let mir = mir_map.map.get(&node_id).expect("no mir for main function");
44
let def_id = tcx.map.local_def_id(node_id);
0 commit comments