[fine] Remove extra printf

This commit is contained in:
John Doty 2024-03-25 09:24:52 -07:00
parent 85ffc0c7dd
commit 13bb04238f

View file

@ -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)