index.js 259 B

12345678910111213141516171819202122232425
  1. /**
  2. * Methods.
  3. */
  4. var methods = [
  5. 'debug',
  6. 'info',
  7. 'warn',
  8. 'error',
  9. 'critical',
  10. 'alert',
  11. 'emergency',
  12. 'notice',
  13. 'verbose',
  14. 'fatal'
  15. ];
  16. /**
  17. * Expose methods.
  18. */
  19. methods.forEach(function(method){
  20. exports[method] = function(){};
  21. });