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,