From a92f14709bf5f263e0dd0d7b7ded7e8eb376f4e6 Mon Sep 17 00:00:00 2001 From: mattwparas Date: Sun, 10 Mar 2024 14:25:46 -0700 Subject: [PATCH] remove some extra logging --- helix-term/src/commands/engine/components.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/src/commands/engine/components.rs b/helix-term/src/commands/engine/components.rs index 6f2e5e788..6ae096bb4 100644 --- a/helix-term/src/commands/engine/components.rs +++ b/helix-term/src/commands/engine/components.rs @@ -674,10 +674,10 @@ impl Component for SteelDynamicComponent { } fn required_size(&mut self, viewport: (u16, u16)) -> Option<(u16, u16)> { - let name = self.type_name(); + // let name = self.type_name(); if let Some(required_size) = &mut self.required_size { - log::info!("Calling required-size inside: {}", name); + // log::info!("Calling required-size inside: {}", name); // TODO: Create some token that we can grab to enqueue function calls internally. Referencing // the external API would cause problems - we just need to include a handle to the interpreter