Skip to content

Instantly share code, notes, and snippets.

@russellhaering
Created July 6, 2011 00:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save russellhaering/1066261 to your computer and use it in GitHub Desktop.
Save russellhaering/1066261 to your computer and use it in GitHub Desktop.
Stack Trace?
var fs = require('fs');
function foo(callback) {
fs.stat('foo', callback);
}
function bar(callback) {
foo(callback);
}
process.nextTick(function() {
bar(function(err) {
delete err.stack;
Error.captureStackTrace(err, arguments.callee);
console.log(err.stack);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment