From 553bb89901193c9417411f99fed3ae81449d38d1 Mon Sep 17 00:00:00 2001 From: Jonas Kruckenberg <118265418+CrabNejonas@users.noreply.github.com> Date: Thu, 8 Feb 2024 16:05:55 +0100 Subject: [PATCH] Update aggregator.rs --- crates/devtools-core/src/aggregator.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/devtools-core/src/aggregator.rs b/crates/devtools-core/src/aggregator.rs index 02559055..d2b522e1 100644 --- a/crates/devtools-core/src/aggregator.rs +++ b/crates/devtools-core/src/aggregator.rs @@ -33,11 +33,11 @@ pub struct Aggregator { new_metadata: Vec, /// Buffered log events. - /// Up to 256 events are retained before the oldest will be dropped. + /// Up to 512 events are retained before the oldest will be dropped. logs: EventBuf, /// Buffered span events. - /// Up to 256 events are retained before the oldest will be dropped. - spans: EventBuf, + /// Up to 2048 events are retained before the oldest will be dropped. + spans: EventBuf, /// All connected clients watchers: Vec,