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.

11 lines
166 B

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