From 348abf61b91c3da5f9826ed45ca28f5a9cc517e1 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Tue, 25 Aug 2026 21:03:35 +0200 Subject: [PATCH] deb: show 10 lines instead of 4 --- src/ui/deb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/deb.rs b/src/ui/deb.rs index 265c88f..b988569 100644 --- a/src/ui/deb.rs +++ b/src/ui/deb.rs @@ -27,7 +27,7 @@ use crate::ui::logfmt::{ }; /// Number of lines displayed in the rolling pane -const PANE_LINES: usize = 4; +const PANE_LINES: usize = 10; /// Minimum interval between pane redraws const REDRAW_INTERVAL: Duration = Duration::from_millis(50);