Remove stray print statements

Max Brunsfeld created

Change summary

.github/workflows/ci.yml       | 1 -
gpui/src/platform/mac/fonts.rs | 2 --
2 files changed, 3 deletions(-)

Detailed changes

gpui/src/platform/mac/fonts.rs 🔗

@@ -91,11 +91,9 @@ impl FontSystemState {
         let mut font_ids = Vec::new();
         for font in self.source.select_family_by_name(name)?.fonts() {
             let font = font.load()?;
-            eprintln!("load font {:?}", font);
             font_ids.push(FontId(self.fonts.len()));
             self.fonts.push(font);
         }
-        eprintln!("font ids: {:?}", font_ids);
         Ok(font_ids)
     }