-
Notifications
You must be signed in to change notification settings - Fork 37
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
stack trace tranucated #150
Comments
Actually this issue is annoying in practice, when I get such errors, I don't know here to look, and I have to add logs everywhere I wonder if this is just a javascript limitation |
At least I found a workaround , set this somewhere at the start |
async function a() {
await new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error("test"));
}, 20);
});
}
try {
await a();
} catch (err) {
console.log(err.stack);
} Edit: No this is wrong. |
Probably I'll try to look into it soon. |
I opened denoland/deno#23146 |
Don't know if its a dax or a deno issue, or if its the way things works
But It would be great if this can be fixed
code:
result
The stack doesn't reach to user code
The text was updated successfully, but these errors were encountered: