Logging
Besides request logging using morgan middleware, NotifyBC also generates application log. Application log has following levels in descending severities
- fatal
- error
- warn
- log
- debug
- verbose
By default the first 4 logging levels are output to console. To override the defaults, set the loggingLevels
config in src/config.local.js. For example, to include debug logs
module.exports = {
// ...
loggingLevels: ['fatal', 'error', 'warn', 'log', 'debug'],
};