Spaces:
Running
Running
File size: 202 Bytes
ecdd7f6 | 1 2 3 4 5 6 7 8 9 10 11 | const bunyan = require('bunyan');
const logger = bunyan.createLogger({
name: 'quickchart',
streams: [{ stream: process.stdout, level: process.env.LOG_LEVEL }],
});
module.exports = {
logger,
};
|