From 13bb04238fca003181b0be251bbddb68d1d7fcd0 Mon Sep 17 00:00:00 2001 From: John Doty Date: Mon, 25 Mar 2024 09:24:52 -0700 Subject: [PATCH] [fine] Remove extra printf --- fine/src/semantics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)