Skip to content

Commit 99d6cde

Browse files
author
katelyn martin
committed
Remove temproary printlns
This reverts commit 07c1ae9.
1 parent dc9da46 commit 99d6cde

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tools/witx/src/toplevel.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,11 @@ fn parse_file(
4343
definitions: &mut Vec<Definition>,
4444
parsed: &mut HashSet<PathBuf>,
4545
) -> Result<(), WitxError> {
46-
eprintln!("parsing file at path='{:?}' root='{:?}'", &path, &root);
4746
let path = io.canonicalize(&root.join(path))?;
48-
eprintln!("canonical-path='{:?}'", &path);
4947
if !parsed.insert(path.clone()) {
5048
return Ok(());
5149
}
5250
let input = io.fgets(&path)?;
53-
eprintln!(""); // this one is just for space
5451

5552
let adjust_err = |mut error: wast::Error| {
5653
error.set_path(&path);
@@ -69,7 +66,6 @@ fn parse_file(
6966
.map_err(WitxError::Validation)?;
7067
}
7168
TopLevelSyntax::Use(u) => {
72-
eprintln!("found a use statement, parsing file at {:?}", &u);
7369
let root = path.parent().unwrap_or(root);
7470
parse_file(u.as_ref(), io, root, validator, definitions, parsed)?;
7571
}

0 commit comments

Comments
 (0)