Skip to content

Commit

Permalink
Update description from first frame render to initial frame render
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Apr 24, 2024
1 parent c06973c commit 2bb3887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class NativeAppStartEventProcessor implements EventProcessor {
final firstFrameRenderSpan = await _createAndFinishSpan(
tracer: transaction,
operation: op,
description: 'First frame render',
description: 'Initial frame render',
parentSpanId: appStartSpan.context.spanId,
traceId: transactionTraceId,
startTimestamp: SentryFlutter.dartLoadingEnd,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void main() {
dartIsolateLoadingSpan = enriched.spans.firstWhereOrNull(
(element) => element.context.description == 'Dart isolate loading');
firstFrameRenderSpan = enriched.spans.firstWhereOrNull(
(element) => element.context.description == 'First frame render');
(element) => element.context.description == 'Initial frame render');
});

test('are added by event processor', () async {
Expand Down

0 comments on commit 2bb3887

Please sign in to comment.