loga

0.1.5 • Public • Published

loga

finally a reasonable logger

log = require 'loga'
 
log('debug by default')
log.trace 'trace'
log.debug 'debug'
log.info 'info'
log.warn 'warn'
log.error 'error'
log {auto: 'stringify'} # objects stringified automatically 
log new Error 'test' # Errors stringified automatically 
 
log.level = 'warn' # limit to warn or above 
log.level = null # silence 
 
log.on 'warn'(args...) ->
  # do something with log 

Readme

Keywords

Package Sidebar

Install

npm i loga

Weekly Downloads

3

Version

0.1.5

License

MIT

Unpacked Size

5.53 kB

Total Files

6

Last publish

Collaborators

  • zolmeister