diff --git a/src/controlflow/orchestration/print_handler.py b/src/controlflow/orchestration/print_handler.py index f76523aa..e121474d 100644 --- a/src/controlflow/orchestration/print_handler.py +++ b/src/controlflow/orchestration/print_handler.py @@ -59,7 +59,9 @@ def update_live(self, latest: BaseMessage = None): cf_console.print(format_event(latest)) def on_orchestrator_start(self, event: OrchestratorStart): - self.live: Live = Live(auto_refresh=False, console=cf_console) + self.live: Live = Live( + auto_refresh=False, console=cf_console, vertical_overflow="visible" + ) self.events.clear() try: self.live.start()