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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi I am using the stack-trace as follows:
//required stack-trace func.todo = function (todo.id,cb){ var trace = stackTrace.get(func.todo); console.log('Trace', trace); //more function calls }
The console displays the output as follows:
Trace [ callSite{}, callSite {}, callSite{}, " " " " " callSite{}]
Proper callsite names and the objects of every call site is not displayed. But when I use
var err= 'Something went wrong'; var trace = stackTrace.parse(err);
The proper callSites with names and their objects are displayed.
Why is this so?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi I am using the stack-trace as follows:
The console displays the output as follows:
Proper callsite names and the objects of every call site is not displayed.
But when I use
The proper callSites with names and their objects are displayed.
Why is this so?
The text was updated successfully, but these errors were encountered: