From 1b7c4a45230b021b023a5556b1281a0624603e83 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 4 Jun 2024 13:03:22 +1000 Subject: [PATCH] Increase slog buffer size (#5882) * Increase slog buffer size --- lighthouse/environment/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse/environment/src/lib.rs b/lighthouse/environment/src/lib.rs index e59b1d455a4..a83a7a91571 100644 --- a/lighthouse/environment/src/lib.rs +++ b/lighthouse/environment/src/lib.rs @@ -36,7 +36,7 @@ use {futures::channel::oneshot, std::cell::RefCell}; pub use task_executor::test_utils::null_logger; -const LOG_CHANNEL_SIZE: usize = 2048; +const LOG_CHANNEL_SIZE: usize = 16384; const SSE_LOG_CHANNEL_SIZE: usize = 2048; /// The maximum time in seconds the client will wait for all internal tasks to shutdown. const MAXIMUM_SHUTDOWN_TIME: u64 = 15;