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.

12 lines
179 B

9 years ago
  1. 'use strict'
  2. module.exports = debug
  3. let level = 0
  4. function debug () {
  5. if (level) console.error.apply(console.error, arguments)
  6. }
  7. debug.setLevel = function () {
  8. level = 1
  9. }