> console.error, console.exception, and console.assert logs in the console now include the full stack from where the call was made
But what about if I use `new Error("something");` ? That's how I let errors bubble up in my app. Am I doing it wrong? According to this, that won't show a stack trace.
> console.error, console.exception, and console.assert logs in the console now include the full stack from where the call was made
But what about if I use `new Error("something");` ? That's how I let errors bubble up in my app. Am I doing it wrong? According to this, that won't show a stack trace.