Make interaction tracing on by default in all WWW builds (#18419)

This commit is contained in:
Dan Abramov
2020-03-30 16:07:58 +01:00
committed by GitHub
parent ba31ad40a9
commit 1f8c40451a
@@ -40,7 +40,11 @@ export let enableUserTimingAPI = __DEV__ && !__EXPERIMENTAL__;
export const enableProfilerTimer = __PROFILE__;
export const enableProfilerCommitHooks = __PROFILE__;
export const enableSchedulerTracing = __PROFILE__;
// Note: we'll want to remove this when we to userland implementation.
// For now, we'll turn it on for everyone because it's *already* on for everyone in practice.
// At least this will let us stop shipping <Profiler> implementation to all users.
export const enableSchedulerTracing = true;
export const enableSchedulerDebugging = true;
export const warnAboutDeprecatedLifecycles = true;