Skip to content

Commit

Permalink
Merge pull request Expensify#46107 from callstack-internal/feat/enabl…
Browse files Browse the repository at this point in the history
…e-firebase-perf

perf: enable capturing performance data in Firebase
  • Loading branch information
cristipaval authored Jul 25, 2024
2 parents a093312 + c331083 commit 4adf0c5
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 4adf0c5

Please sign in to comment.