Skip to content

Commit 3d6b265

Browse files
erdemgokselerdemgoksel
authored andcommitted
Increase MAX_LOG_LINES to 1500 in logging
Raised the maximum number of log lines from 500 to 1500 to allow for more extensive log retention.
1 parent 4733045 commit 3d6b265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::sync::Mutex;
44
use tracing::Subscriber;
55
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt, Layer};
66

7-
const MAX_LOG_LINES: usize = 500;
7+
const MAX_LOG_LINES: usize = 1500;
88

99
pub static LOG_FILE_PATH: Mutex<Option<String>> = Mutex::new(None);
1010

0 commit comments

Comments
 (0)