It'd be nice to have a toggle to pause the debugger when warnings fire so you can inspect the stack as it's happening. ``` console.error = function() { ... if (isBreakOn) { debugger; } } ``` See https://github.com/facebook/react/pull/19044