We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e32bd4 commit 553bb89Copy full SHA for 553bb89
crates/devtools-core/src/aggregator.rs
@@ -33,11 +33,11 @@ pub struct Aggregator {
33
new_metadata: Vec<NewMetadata>,
34
35
/// Buffered log events.
36
- /// Up to 256 events are retained before the oldest will be dropped.
+ /// Up to 512 events are retained before the oldest will be dropped.
37
logs: EventBuf<LogEvent, 512>,
38
/// Buffered span events.
39
40
- spans: EventBuf<SpanEvent, 512>,
+ /// Up to 2048 events are retained before the oldest will be dropped.
+ spans: EventBuf<SpanEvent, 2048>,
41
42
/// All connected clients
43
watchers: Vec<Watcher>,
0 commit comments