Skip to content

Commit

Permalink
Update aggregator.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
CrabNejonas committed Feb 8, 2024
1 parent 4e32bd4 commit 553bb89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/devtools-core/src/aggregator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ pub struct Aggregator {
new_metadata: Vec<NewMetadata>,

/// 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<LogEvent, 512>,
/// Buffered span events.
/// Up to 256 events are retained before the oldest will be dropped.
spans: EventBuf<SpanEvent, 512>,
/// Up to 2048 events are retained before the oldest will be dropped.
spans: EventBuf<SpanEvent, 2048>,

/// All connected clients
watchers: Vec<Watcher>,
Expand Down

0 comments on commit 553bb89

Please sign in to comment.