Skip to content

Commit ff835fe

Browse files
committed
feat: increase log capturer buffer
1 parent 80d7f1b commit ff835fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/common/logging.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static INIT: Once = Once::new();
1313
#[doc(hidden)]
1414
pub fn captured_logs_buffer() -> &'static Mutex<CircularBuffer> {
1515
static CAPTURED_LOGS_GLOBAL_BUFFER: OnceLock<Mutex<CircularBuffer>> = OnceLock::new();
16-
CAPTURED_LOGS_GLOBAL_BUFFER.get_or_init(|| Mutex::new(CircularBuffer::new(1000, 200)))
16+
CAPTURED_LOGS_GLOBAL_BUFFER.get_or_init(|| Mutex::new(CircularBuffer::new(10000, 200)))
1717
}
1818

1919
pub fn setup() {

0 commit comments

Comments
 (0)