Dont join stacks

This commit is contained in:
Justin Chase 2017-11-24 16:16:42 -06:00
parent bf6c2b9319
commit 567d212204

View File

@ -552,7 +552,6 @@ function onError(message, error) {
if (config.debug) { console.error(error.stack); }
// rethrow new high level error for api users
const newError = new Error(message + ': ' + error.message);
newError.stack += '\n' + error.stack;
newError.innerError = error;
throw newError;
}