We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
console.trace
By default, console.trace() will also output the javascript stack trace, but once we wrapConsole(), it stops doing that!
console.trace()
wrapConsole()
Here's a sample codesandbox showing the problem: https://codesandbox.io/s/console-trace-missing-stack-trace-6jh8s7?file=/src/index.js
Just open the above link on the browser, press F12, and check the output on the console:
On the above, you can see the stack trace just under the "unwrapped", but it is missing from below the "wrapped" call
The text was updated successfully, but these errors were encountered:
consola.trace
d5ab97a
No branches or pull requests
By default,
console.trace()
will also output the javascript stack trace, but once wewrapConsole()
, it stops doing that!Here's a sample codesandbox showing the problem: https://codesandbox.io/s/console-trace-missing-stack-trace-6jh8s7?file=/src/index.js
Just open the above link on the browser, press F12, and check the output on the console:
On the above, you can see the stack trace just under the "unwrapped", but it is missing from below the "wrapped" call
The text was updated successfully, but these errors were encountered: