Skip to content

Commit

Permalink
Make scheduler debugging feature flag static
Browse files Browse the repository at this point in the history
  • Loading branch information
acdlite committed Dec 18, 2018
1 parent 4a10721 commit 8bfef0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/shared/ReactFeatureFlags.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const enableSchedulerTracing = __PROFILE__;
export const enableSuspenseServerRenderer = false; // TODO: __DEV__? Here it might just be false.

// Only used in www builds.
export const enableSchedulerDebugging = __DEV__;
export const enableSchedulerDebugging = false;

// Only used in www builds.
export function addUserTimingListener() {
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/forks/ReactFeatureFlags.www.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export let enableUserTimingAPI = __DEV__;

export const enableProfilerTimer = __PROFILE__;
export const enableSchedulerTracing = __PROFILE__;
export const enableSchedulerDebugging = __DEV__; // TODO or just true
export const enableSchedulerDebugging = true;

export const enableStableConcurrentModeAPIs = false;

Expand Down

0 comments on commit 8bfef0d

Please sign in to comment.