Skip to content

Commit 553bb89

Browse files
committed
Update aggregator.rs
1 parent 4e32bd4 commit 553bb89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/devtools-core/src/aggregator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ pub struct Aggregator {
3333
new_metadata: Vec<NewMetadata>,
3434

3535
/// Buffered log events.
36-
/// Up to 256 events are retained before the oldest will be dropped.
36+
/// Up to 512 events are retained before the oldest will be dropped.
3737
logs: EventBuf<LogEvent, 512>,
3838
/// Buffered span events.
39-
/// Up to 256 events are retained before the oldest will be dropped.
40-
spans: EventBuf<SpanEvent, 512>,
39+
/// Up to 2048 events are retained before the oldest will be dropped.
40+
spans: EventBuf<SpanEvent, 2048>,
4141

4242
/// All connected clients
4343
watchers: Vec<Watcher>,

0 commit comments

Comments
 (0)