From 69683dddd7d672fb1211845944aac4c921182a24 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 7 Jul 2018 19:00:55 -0700 Subject: [PATCH] Mask emoji in the 'catchers' info log. --- core/lib/src/rocket.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/src/rocket.rs b/core/lib/src/rocket.rs index 2ac4273d..c31380b3 100644 --- a/core/lib/src/rocket.rs +++ b/core/lib/src/rocket.rs @@ -536,7 +536,7 @@ impl Rocket { /// ``` #[inline] pub fn catch(mut self, catchers: Vec) -> Self { - info!("👾 {}:", Paint::purple("Catchers")); + info!("{}{}:", Paint::masked("👾 "), Paint::purple("Catchers")); for c in catchers { if self.catchers.get(&c.code).map_or(false, |e| !e.is_default()) { let msg = "(warning: duplicate catcher!)";