From a031445683ac03d9466a652343de01d19b0bdb73 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 25 Oct 2023 22:31:47 +0200 Subject: [PATCH] Remove eprintln --- src/tile.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tile.rs b/src/tile.rs index 058e224..33eff6d 100644 --- a/src/tile.rs +++ b/src/tile.rs @@ -248,7 +248,6 @@ impl Tile { /// Push content into the stdout of the tile. pub fn push_stdout(&mut self, content: String) { - eprintln!("{:?}", content); for c in content.chars() { if c == '\x1b' { self.counting = false;