2012-02-02 17:11:45 +00:00
|
|
|
# bunyan Changelog
|
|
|
|
|
2012-02-06 17:10:11 +00:00
|
|
|
## bunyan 0.5.0 (not yet released)
|
|
|
|
|
2012-02-06 23:04:47 +00:00
|
|
|
- Add `log.level(...)` and `log.levels(...)` API for changing logger stream
|
|
|
|
levels.
|
|
|
|
- Add `TRACE|DEBUG|INFO|WARN|ERROR|FATAL` level constants to exports.
|
2012-02-06 17:10:11 +00:00
|
|
|
- Add `log.info(err)` special case for logging an `Error` instance. For
|
|
|
|
example `log.info(new TypeError("boom")` will produce:
|
|
|
|
|
|
|
|
...
|
|
|
|
"err": {
|
|
|
|
"message": "boom",
|
|
|
|
"name": "TypeError",
|
|
|
|
"stack": "TypeError: boom\n at Object.<anonymous> ..."
|
|
|
|
},
|
|
|
|
"msg": "boom",
|
|
|
|
...
|
2012-02-06 04:34:40 +00:00
|
|
|
|
|
|
|
|
2012-02-06 04:34:08 +00:00
|
|
|
## bunyan 0.4.0
|
2012-02-06 04:33:57 +00:00
|
|
|
|
|
|
|
- Add `new Logger({src: true})` config option to have a 'src' attribute be
|
|
|
|
automatically added to log records with the log call source info. Example:
|
|
|
|
|
|
|
|
"src": {
|
|
|
|
"file": "/Users/trentm/tm/node-bunyan/examples/src.js",
|
|
|
|
"line": 20,
|
|
|
|
"func": "Wuzzle.woos"
|
|
|
|
},
|
2012-02-05 05:43:06 +00:00
|
|
|
|
|
|
|
|
2012-02-05 05:42:55 +00:00
|
|
|
## bunyan 0.3.0
|
2012-02-04 08:08:37 +00:00
|
|
|
|
2012-02-05 05:42:47 +00:00
|
|
|
- `log.child(options[, simple])` Added `simple` boolean arg. Set `true` to
|
|
|
|
assert that options only add fields (no config changes). Results in a 10x
|
|
|
|
speed increase in child creation. See "tools/timechild.js". On my Mac,
|
|
|
|
"fast child" creation takes about 0.001ms. IOW, if your app is dishing
|
|
|
|
10,000 req/s, then creating a log child for each request will take
|
|
|
|
about 1% of the request time.
|
2012-02-04 08:08:37 +00:00
|
|
|
- `log.clone` -> `log.child` to better reflect the relationship: streams and
|
|
|
|
serializers are inherited. Streams can't be removed as part of the child
|
|
|
|
creation. The child doesn't own the parent's streams (so can't close them).
|
|
|
|
- Clean up Logger creation. The goal here was to ensure `log.child` usage
|
|
|
|
is fast. TODO: measure that.
|
|
|
|
- Add `Logger.stdSerializers.err` serializer which is necessary to get good
|
|
|
|
Error object logging with node 0.6 (where core Error object properties
|
|
|
|
are non-enumerable).
|
2012-02-04 01:05:31 +00:00
|
|
|
|
|
|
|
|
2012-02-04 01:05:22 +00:00
|
|
|
## bunyan 0.2.0
|
2012-02-02 23:16:28 +00:00
|
|
|
|
2012-02-04 01:05:13 +00:00
|
|
|
- Spec'ing core/recommended log record fields.
|
|
|
|
- Add `LOG_VERSION` to exports.
|
|
|
|
- Improvements to request/response serializations.
|
2012-02-02 23:16:28 +00:00
|
|
|
|
|
|
|
|
2012-02-02 22:59:52 +00:00
|
|
|
## bunyan 0.1.0
|
2012-02-02 17:11:45 +00:00
|
|
|
|
|
|
|
First release.
|
|
|
|
|