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

perf: enable capturing performance data in Firebase #46107

Merged
2 changes: 1 addition & 1 deletion src/libs/actions/Timing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let timestampData: Record<string, TimestampData> = {};
* @param eventName
* @param shouldUseFirebase - adds an additional trace in Firebase
*/
function start(eventName: string, shouldUseFirebase = false) {
function start(eventName: string, shouldUseFirebase = true) {
timestampData[eventName] = {startTime: Date.now(), shouldUseFirebase};

if (!shouldUseFirebase) {
Expand Down
Loading