From 8dbe1f51ff1705f97a191197b3ee7cb66b682584 Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 9 Apr 2020 14:37:12 +0200 Subject: stricter about what to print --- src/encyclopedia.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/encyclopedia.rs') diff --git a/src/encyclopedia.rs b/src/encyclopedia.rs index c74a09f..0df7c70 100644 --- a/src/encyclopedia.rs +++ b/src/encyclopedia.rs @@ -159,7 +159,6 @@ impl Encyclopedia { pub fn construct(&self, template: &Template) -> Result { if let Some(new_name) = self.assemblage_substitute.get(&template.name){ - println!("substituting {:?} with {:?}", template.name, new_name); let mut into = template.clone(); into.name = new_name.clone(); return self.construct(&into); -- cgit