2012-06-20 23:04:23 +00:00
|
|
|
// Example of a "raw" stream in a Bunyan Logger. A raw stream is one to
|
|
|
|
// which log record *objects* are written instead of the JSON-serialized
|
|
|
|
// string.
|
|
|
|
|
2014-07-25 06:36:50 +00:00
|
|
|
var bunyan = require('../lib/bunyan');
|
2012-06-20 23:04:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A raw Bunyan Logger stream object. It takes raw log records and writes
|
|
|
|
* them to stdout with an added "yo": "yo" field.
|
|
|
|
*/
|
|
|
|
function MyRawStream() {}
|
|
|
|
MyRawStream.prototype.write = function (rec) {
|
2013-03-29 00:42:32 +00:00
|
|
|
if (typeof (rec) !== 'object') {
|
|
|
|
console.error('error: raw stream got a non-object record: %j', rec)
|
|
|
|
} else {
|
|
|
|
rec.yo = 'yo';
|
|
|
|
process.stdout.write(JSON.stringify(rec) + '\n');
|
|
|
|
}
|
2012-06-20 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// A Logger using the raw stream.
|
2014-07-25 06:36:50 +00:00
|
|
|
var log = bunyan.createLogger({
|
2013-03-29 00:42:32 +00:00
|
|
|
name: 'raw-example',
|
|
|
|
streams: [
|
|
|
|
{
|
|
|
|
level: 'info',
|
|
|
|
stream: new MyRawStream(),
|
|
|
|
type: 'raw'
|
|
|
|
},
|
|
|
|
]
|
2012-06-20 23:04:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
log.info('hi raw stream');
|
|
|
|
log.info({foo: 'bar'}, 'added "foo" key');
|