From abc835cd020a66b40d0f39e7c950644b436c3a86 Mon Sep 17 00:00:00 2001 From: Rory Dudley Date: Thu, 16 May 2024 17:50:04 -0600 Subject: Remove a println!() Removed a println!() that was used for debugging, and was accidentally left in. --- src/poem/read.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/poem/read.rs') diff --git a/src/poem/read.rs b/src/poem/read.rs index 2b0dd60..afa35e7 100644 --- a/src/poem/read.rs +++ b/src/poem/read.rs @@ -79,7 +79,6 @@ impl Appendable for Poem { Some(alias) => { // Interpret the alias (could be a complex poem) let mut poem = Poem::read(alias.to_string(), env)?; - println!("{:?}", poem); // Try and get the last verse let lv = match poem.last_mut() { -- cgit v1.2.3