fix: Remove println

This commit is contained in:
강동윤 2021-07-29 14:29:22 +09:00
parent 4011703af5
commit 360b4bcc04
3 changed files with 2 additions and 3 deletions

2
Cargo.lock generated
View File

@ -2948,7 +2948,7 @@ dependencies = [
[[package]]
name = "testing_macros"
version = "0.1.2"
version = "0.2.1"
dependencies = [
"anyhow",
"glob",

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0/MIT"
name = "testing_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.2.0"
version = "0.2.1"
[lib]
proc-macro = true

View File

@ -107,7 +107,6 @@ pub fn expand(callee: &Ident, attr: Config) -> Result<Vec<ItemFn>, Error> {
));
let resolved_path = RelativePath::new(&attr.pattern).to_path(&base_dir);
let pattern = resolved_path.to_string_lossy();
eprintln!("{}: ", resolved_path.display());
let paths =
glob(&pattern).with_context(|| format!("glob failed for whole path: `{}`", pattern))?;