Logger
Extremely fast JSON logger built on top of pino. The module does handful of modifications to the config of pino and also exposes a fake logger to be used during tests.
Table of contents
Usage
Install the package from npm as follows:
npm i @poppinss/logger
yarn add @poppinss/logger
and then use it as follows
import { Logger } from '@poppinss/logger'
const logger = new Logger({
enabled: true,
name: 'adonis-logger',
level: 'debug',
})
logger.debug('received new request %s', request.url())
What's changed from Pino?
We have changed handful of config options to make things more explicit. The modifications are based on our own opinions.
Making certain fields required
All config variables are optional in pino, however, we want to make following config options required, so that the user of the logger always knows, where the values are coming from.
enabled
Making it clear, that logger can be disabled (if required).
name
Seeing logs without knowing their origin isn't really helpful. We force to define the name of the application.
level
The level at which you want to report must be decided upfront
Modifications
changeLevelName -> levelKey
Just like the messageKey
, you can define the key for showing the level number inside the logs. For some reasons pino call this option changeLevelName
, which sounds more like an action over a configuration. We have renamed the option to levelKey
.
stream
Instead of passing the stream as the 2nd argument, you can define the custom stream within the config.
import { Logger } from '@poppinss/logger'
new Logger({
stream: process.stdout,
})
Fake logger
Many times you would want to test whether your code is logging certain messages or not. One way is to hijack the stdout
stream and read the rows text from it.
Instead, we ship with a proper FakeLogger
that you can use during tests.
export class MyApp {
constructor (logger) {
this.logger = logger
}
perform () {
this.logger.debug('created app')
}
}
Inside your tests
import { FakeLogger } from '@poppinss/logger'
import { MyApp } from './MyApp'
const logger = new FakeLogger({
})
const app = new MyApp(logger)
app.perform()
assert.equal(logger.logs[0].msg, 'created app')
assert.equal(logger.logs[0].level, 20)
logger.clear()
The fake logger works seamless with the child logger as well. The root logger will collect all the logs from nested child loggers.
API
Following are the autogenerated files via Typedoc
Maintainers
Harminder virk