Package Exports
- @adonisjs/logger
- @adonisjs/logger/build/src/Logger
- @adonisjs/logger/build/standalone
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@adonisjs/logger) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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 @adonisjs/logger
# yarn
yarn add @adonisjs/loggerand then use it as follows
import { Logger } from '@adonisjs/logger/build/standalone'
const logger = new Logger({
enabled: true,
name: 'adonis-logger',
level: 'debug',
})
logger.debug('received new request %s', request.url())Usage with AdonisJs
The @adonisjs/core module includes this module by default. However, here's how you can set it up manually.
const providers = [
'@adonisjs/logger'
]And then also register the typings file inside tsconfig.json file.
{
"files": ["./node_modules/@adonisjs/logger/build/adonis-typings/logger.d.ts"]
}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 '@adonisjs/logger/build/standalone'
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 '@adonisjs/logger/build/standalone'
import { MyApp } from './MyApp'
const logger = new FakeLogger({
// config
})
const app = new MyApp(logger)
app.perform()
assert.equal(logger.logs[0].msg, 'created app')
assert.equal(logger.logs[0].level, 20)
// Exists on fake logger only
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