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