-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Description
Using the latest version, can no longer switch off the long-stack tracing, or the entire debug mode for that matter:
- setting
BLUEBIRD_DEBUG=0- no effect; - setting
NODE_ENV=production- no effect.
Had to go manually comment some code out to make the long-stack tracing go away:
var debugging = false/* || (util.isNode &&
(!!process.env["BLUEBIRD_DEBUG"] ||
process.env["NODE_ENV"] === "development"))*/;what's going on???!!!
Reactions are currently unavailable