diff --git a/fine/src/semantics.rs b/fine/src/semantics.rs index b93790b6..31f4f9a7 100644 --- a/fine/src/semantics.rs +++ b/fine/src/semantics.rs @@ -2163,7 +2163,7 @@ impl Semantics { let other_env = other.environment_of(root); for (name, decl) in other_env.declarations.iter() { if decl.is_exported() { - eprintln!("******* {} is exported!", name); + // eprintln!("******* {} is exported!", name); result.declarations.insert( name.clone(), Declaration::ImportedDeclaration { @@ -2173,7 +2173,7 @@ impl Semantics { }, ); } else { - eprintln!("******* {} is NOT exported!", name); + // eprintln!("******* {} is NOT exported!", name); } } EnvironmentRef::new(result)