Using Chrome's "Performance" tab, I can add custom markers using console.time
. With the React Devtool's "Profiler" tab, is it possible to show custom markers to help debug what's trigger each update?
There's an option labeled "Show inline warnings and errors.", so I expected console.warn
and console.error
to show up in the profiler, but they're not.
I also tried unstable_trace
, but that didn't work because the "Interactions" subtab isn't showing up in my profiler (separate question).