updates based on feedback

This commit is contained in:
coreyc
2018-11-03 12:09:19 -05:00
parent 0218ce5d7a
commit bf415fa889
3 changed files with 23 additions and 16 deletions

View File

@ -16,8 +16,7 @@ We all love console.log but obviously, a reputable and persistent logger like [W
var logger = new winston.Logger({
level: 'info',
transports: [
new (winston.transports.Console)(),
new (winston.transports.File)({ filename: 'somefile.log' })
new (winston.transports.Console)()
]
});