From 09ffd70c30cd28ee06ef6952e40ec5b2b4eaa57f Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Sun, 22 May 2022 23:49:10 -0700 Subject: [PATCH] remove stray println in color serialization (#661) --- src/style/types/color.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/style/types/color.rs b/src/style/types/color.rs index be0bce2..b29af71 100644 --- a/src/style/types/color.rs +++ b/src/style/types/color.rs @@ -240,7 +240,6 @@ impl serde::ser::Serialize for Color { }; if str == "" { - println!("color: {:?}", self); match *self { Color::AnsiValue(value) => { return serializer.serialize_str(&format!("ansi_({})", value));