-
Notifications
You must be signed in to change notification settings - Fork 1
levelKey
Grant Carthew edited this page May 13, 2018
·
6 revisions
The levelKey
option enables you to change the JSON key used for the level output.
The levelKey
option is used to change the key used in the output JSON for the level value. For example, the default levelKey
of 'level' will produce an output from the logger of:
{"level": "info",...
If you set the levelKey
options to 'log_level' then the output from the logger would look like:
{"log_level": "info",...
This example changes the levelKey
from the default of 'level' to 'log_level':
const perj = require('perj')
const log = perj.create({ levelKey: 'log_level' })
log.info('You have advanced to the next level!')
/*
Standard out will be:
{"log_level":"info","lvl":30,"time":1525643291716,"msg":"You have advanced to the next level!","data":""}
*/