You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
244 B

'use strict';
var DEBUG = process.env['NODE_DEBUG_AMQP'];
// only define debug function in debugging mode
if (DEBUG) {
module.exports = function debug () {
console.error.apply(null, arguments);
};
} else {
module.exports = null;
}