Parse global stream config option
This commit is contained in:
parent
0d5021eebc
commit
a989f4d60c
1 changed files with 10 additions and 7 deletions
|
@ -13,13 +13,16 @@ var output;
|
|||
if (config.get('bunyan') || config.get(env + ':use_bunyan')) {
|
||||
var settings = _.cloneDeep(config.get(env + ':bunyan'));
|
||||
|
||||
for (var i = 0; i < settings.streams.length; i++) {
|
||||
if (settings.streams[i].stream === 'process.stdout') {
|
||||
settings.streams[i].stream = process.stdout;
|
||||
} else if (settings.streams[i].stream === 'process.stderr') {
|
||||
settings.streams[i].stream = process.stderr;
|
||||
}
|
||||
}
|
||||
// Stream can be specified either in settings.streams[ix] or globally in settings.stream
|
||||
_([settings.streams, settings])
|
||||
.flatten()
|
||||
.forEach(function (settingObj) {
|
||||
if (settingObj.stream === 'process.stdout') {
|
||||
settingObj.stream = process.stdout;
|
||||
} else if (settingObj.stream === 'process.stderr') {
|
||||
settingObj.stream = process.stderr;
|
||||
}
|
||||
});
|
||||
|
||||
output = bunyan.createLogger(settings);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue