2012-01-30 22:28:02 +00:00
|
|
|
var Logger = require('../lib/bunyan');
|
2012-01-30 20:01:15 +00:00
|
|
|
|
2012-01-30 22:28:02 +00:00
|
|
|
// Basic usage.
|
2012-01-31 00:07:08 +00:00
|
|
|
var log = new Logger({service: "myapp", level: "info"});
|
2012-01-30 22:28:02 +00:00
|
|
|
|
|
|
|
// isInfoEnabled replacement
|
2012-01-30 06:26:47 +00:00
|
|
|
console.log("log.info() is:", log.info())
|
2012-01-30 22:28:02 +00:00
|
|
|
|
|
|
|
// `util.format`-based printf handling
|
2012-01-30 06:26:47 +00:00
|
|
|
log.info("hi");
|
|
|
|
log.info("hi", "trent");
|
|
|
|
log.info("hi %s there", true);
|
2012-01-30 22:28:02 +00:00
|
|
|
|
|
|
|
// First arg as an object adds fields to the log record.
|
2012-01-30 06:26:47 +00:00
|
|
|
log.info({foo:"bar"}, "hi %d", 1, "two", 3);
|
|
|
|
|
|
|
|
|
2012-02-04 08:08:37 +00:00
|
|
|
// Shows `log.child(...)` to specialize a logger for a sub-component.
|
2012-01-30 22:28:02 +00:00
|
|
|
console.log("\n\n")
|
2012-01-30 06:26:47 +00:00
|
|
|
|
2012-01-30 20:01:15 +00:00
|
|
|
function Wuzzle(options) {
|
|
|
|
this.log = options.log;
|
|
|
|
this.log.info("creating a wuzzle")
|
|
|
|
}
|
|
|
|
|
|
|
|
Wuzzle.prototype.woos = function () {
|
2012-01-30 20:40:57 +00:00
|
|
|
this.log.warn("This wuzzle is woosey.")
|
2012-01-30 20:01:15 +00:00
|
|
|
}
|
|
|
|
|
2012-02-04 08:08:37 +00:00
|
|
|
var wuzzle = new Wuzzle({log: log.child({component: "wuzzle"})});
|
2012-01-30 20:01:15 +00:00
|
|
|
wuzzle.woos();
|
|
|
|
log.info("done with the wuzzle")
|
2012-01-30 06:26:47 +00:00
|
|
|
|