Comparing version 0.22.0 to 0.22.1
@@ -9,6 +9,14 @@ # bunyan Changelog | ||
## bunyan 0.22.1 | ||
- #111 Fix a crash when attempting to use `bunyan -p` on a platform without | ||
dtrace. | ||
- #101 Fix a crash in `bunyan` rendering a record with unexpected "res.headers". | ||
## bunyan 0.22.0 | ||
- [issue #104] `log.reopenFileStreams()` convenience method to be used with | ||
external log rotation. | ||
- #104 `log.reopenFileStreams()` convenience method to be used with external log | ||
rotation. | ||
@@ -18,5 +26,4 @@ | ||
- [issue #96] Fix `bunyan` to default to paging (with `less`) by default in | ||
node 0.10.0. The intention has always been to default to paging for node | ||
>=0.8. | ||
- #96 Fix `bunyan` to default to paging (with `less`) by default in node 0.10.0. | ||
The intention has always been to default to paging for node >=0.8. | ||
@@ -23,0 +30,0 @@ |
@@ -7,3 +7,3 @@ /* | ||
var VERSION = '0.22.0'; | ||
var VERSION = '0.22.1'; | ||
@@ -707,17 +707,2 @@ // Bunyan log format version. This becomes the 'v' field on all log records. | ||
/** | ||
* A log record is a 4-tuple: | ||
* [<default fields object>, | ||
* <log record fields object>, | ||
* <level integer>, | ||
* <msg args array>] | ||
* For Perf reasons, we only render this down to a single object when | ||
* it is emitted. | ||
*/ | ||
Logger.prototype._mkRecord = function (fields, level, msgArgs) { | ||
var recFields = (fields ? objCopy(fields) : null); | ||
return [this.fields, recFields, level, msgArgs]; | ||
} | ||
/** | ||
* Emit a log record. | ||
@@ -724,0 +709,0 @@ * |
{ | ||
"name": "bunyan", | ||
"version": "0.22.0", | ||
"version": "0.22.1", | ||
"description": "a JSON Logger library for node.js services", | ||
@@ -5,0 +5,0 @@ "author": "Trent Mick <trentm@gmail.com> (http://trentm.com)", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
336882
2967