Comparing version 1.8.3 to 1.8.4
@@ -11,2 +11,7 @@ # bunyan Changelog | ||
## 1.8.4 | ||
- [issue #454] Fix `src` usage with node v7. | ||
## 1.8.3 | ||
@@ -13,0 +18,0 @@ |
@@ -11,3 +11,3 @@ /** | ||
var VERSION = '1.8.3'; | ||
var VERSION = '1.8.4'; | ||
@@ -190,3 +190,2 @@ /* | ||
Error.stackTraceLimit = 3; | ||
Error.captureStackTrace(this, getCaller3Info); | ||
@@ -204,3 +203,5 @@ Error.prepareStackTrace = function (_, stack) { | ||
}; | ||
Error.captureStackTrace(this, getCaller3Info); | ||
this.stack; | ||
Error.stackTraceLimit = saveLimit; | ||
@@ -973,4 +974,4 @@ Error.prepareStackTrace = savePrepare; | ||
} | ||
} else if (typeof (args[0]) !== 'object' && args[0] !== null || | ||
Array.isArray(args[0])) { | ||
} else if (typeof (args[0]) !== 'object' || | ||
Array.isArray(args[0])) { | ||
// `log.<level>(msg, ...)` | ||
@@ -977,0 +978,0 @@ fields = null; |
{ | ||
"name": "bunyan", | ||
"version": "1.8.3", | ||
"version": "1.8.4", | ||
"description": "a JSON logging library for node.js services", | ||
@@ -5,0 +5,0 @@ "author": "Trent Mick <trentm@gmail.com> (http://trentm.com)", |
@@ -20,5 +20,3 @@ [![npm version](https://img.shields.io/npm/v/bunyan.svg?style=flat)](https://www.npmjs.com/package/bunyan) | ||
Also: log4j is way more than you need. | ||
## Table of Contents | ||
@@ -1046,22 +1044,6 @@ | ||
(There are a lot that aren't listed here. `npm search bunyan` is a good | ||
place to start.) | ||
See the [user-maintained list in the Bunyan | ||
wiki](https://github.com/trentm/node-bunyan/wiki/Awesome-Bunyan). | ||
- syslog: | ||
[mcavage/node-bunyan-syslog](https://github.com/mcavage/node-bunyan-syslog) | ||
provides support for directing bunyan logging to a syslog server. | ||
- bunyan-slack: | ||
[qualitybath/bunyan-slack](https://github.com/qualitybath/bunyan-slack) Bunyan stream for Slack chat integration. | ||
- bunyan-fogbugz | ||
[qualitybath/bunyan-fogbugz](https://github.com/qualitybath/bunyan-fogbugz) Bunyan stream for sending automated crash reports to FogBugz | ||
- bunyan-cloudwatch: | ||
[mirkokiefer/bunyan-cloudwatch](https://github.com/mirkokiefer/bunyan-cloudwatch) Bunyan stream for sending logs to AWS CloudWatch. | ||
- TODO: eventually https://github.com/trentm/node-bunyan-winston | ||
# Runtime log snooping via DTrace | ||
@@ -1068,0 +1050,0 @@ |
Sorry, the diff of this file is not supported yet
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
436171
1329