Use higher contrast emojis for routes, catchers.

This commit is contained in:
Sergio Benitez 2021-06-26 16:47:29 -07:00
parent 7f34aacd60
commit 00e56c9822
1 changed files with 2 additions and 2 deletions

View File

@ -504,8 +504,8 @@ impl Rocket<Build> {
// Log everything we know: config, routes, catchers, fairings.
// TODO: Store/print managed state type names?
config.pretty_print(self.figment());
log_items("🛰 ", "Routes", self.routes(), |r| &r.uri.base, |r| &r.uri);
log_items("👾 ", "Catchers", self.catchers(), |c| &c.base, |c| &c.base);
log_items("📬 ", "Routes", self.routes(), |r| &r.uri.base, |r| &r.uri);
log_items("🥅 ", "Catchers", self.catchers(), |c| &c.base, |c| &c.base);
self.fairings.pretty_print();
// Ignite the rocket.