This project has been deprecated. All functionality has been merged into choo-devtools. Thanks for passing by!
Development logger for choo.
var log = require('choo-log')
var choo = require('choo')
var app = choo()
app.use(log())
app.mount('body')Create a new logger instance. Opts can contain:
- timing: defaults to
true. Disable calls towindow.performancetiming API. Timing calls will not run in browsers that don't support it out of the box. - clearResourceTimings: defaults to
true. Disable clearing the window.performance resourcetimingbuffer when full. Set tofalseif the buffer is cleared somewhere else. - colors: defaults to the default theme of nanologger.
Send a log event. choo-log will pass log:<level> events through to nanologger. For example:
emitter.emit('log:info', 'The rain in Spain stays mainly in the plain π§')These are just normal events, so you can listen to them in addition to them being logged:
emitter.on('log:debug', function (msg) {
// do something with debug message
})Set the nanologger log level, e.g.:
localStorage.setItem('logLevel','debug')$ npm install choo-log