Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 1940 Add custom traces #11934

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion app/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,17 @@
store.dispatch({
type: 'FETCH_FEATURE_FLAGS',
});
EngineService.initalizeEngine(store);

trace(

Check failure on line 87 in app/store/index.ts

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

Cannot find name 'trace'.
{
name: TraceName.EngineInitialization,

Check failure on line 89 in app/store/index.ts

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

Cannot find name 'TraceName'.
op: TraceOperation.EngineInitialization,

Check failure on line 90 in app/store/index.ts

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

Cannot find name 'TraceOperation'.
tags: getTraceTags(store.getState?.()),

Check failure on line 91 in app/store/index.ts

View workflow job for this annotation

GitHub Actions / scripts (lint:tsc)

Cannot find name 'getTraceTags'.
},
() => {
EngineService.initalizeEngine(store);
},
);
Authentication.init(store);
AppStateEventProcessor.init(store);
LockManagerService.init(store);
Expand Down
Loading