mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-05-18 11:59:31 +08:00
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
const winston = require('winston');
|
|
var logConfig = module.exports = {};
|
|
|
|
logConfig.options = {
|
|
transports: [
|
|
new winston.transports.Console({
|
|
level: 'info'
|
|
})
|
|
]
|
|
};
|