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
272 B

4 years ago
  1. 'use strict';
  2. var index = require('../');
  3. function debug () {
  4. if (index.debug_mode) {
  5. var data = Array.prototype.slice.call(arguments);
  6. data.unshift(new Date().toISOString());
  7. console.error.apply(null, data);
  8. }
  9. }
  10. module.exports = debug;