Keep a bit more logs

This commit is contained in:
2023-11-05 10:01:26 +01:00
parent 2fafdcfa40
commit 2145aff76f

View File

@ -28,7 +28,7 @@ use super::{Buffer, BufferItem};
use crate::widgets::Prerender;
/// Maximum number of log lines to be stored in memory
const MAX_MEM_LOG_LINES: usize = 100;
const MAX_MEM_LOG_LINES: usize = 1000;
pub struct LogBuffer {
lines: VecDeque<(String, Prerender)>,