-
Notifications
You must be signed in to change notification settings - Fork 47.4k
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
[flags] Delete enableDebugTracing #31780
[flags] Delete enableDebugTracing #31780
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
export const ProfileMode = /* */ 0b0000010; | ||
export const DebugTracingMode = /* */ 0b0000100; | ||
export const ProfileMode = /* */ 0b0000010; | ||
//export const DebugTracingMode = /* */ 0b0000100; // Removed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sebmarkbage @acdlite when we delete a mode, should we shift the bits or is there a good reason to keep the slot (maybe DevTools needs to match up, for example idk)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like DevTools use it so probably easiest leave it.
Comparing: 0d67cc0...bd07780 Critical size changesIncludes critical production bundles, as well as any change greater than 2%:
Significant size changesIncludes any change greater than 0.2%: Expand to show
|
This is unused, even in the one builds that uses it, and we don't plan on landing it in this form.