bunyan-logger
Advanced tools
Comparing version 0.1.0 to 0.1.1
0.1.1 / 2017-03-15 | ||
================== | ||
* Allow the stream options explicitly set with `stream.options`, for the predefined streams. | ||
0.1.0 / 2017-02-08 | ||
================== | ||
* Release 0.1.0 | ||
* Updated readme. Added example. | ||
* Refactored the class to be extended from the Bunyan one, and splited the streams into files for easier extending. | ||
* Refactored the most basic files. | ||
0.0.3 / 2016-10-13 | ||
================== | ||
* update JOI version to 9.1.1 | ||
* change bunyan-syslog version to support node v6 | ||
* add transaction template | ||
* Fix on readme | ||
* Improve readme | ||
* update CI config | ||
* fix when file path do not exits | ||
* add travis.yml for auto-testing | ||
* update README | ||
* change to use originalUrl for http logs | ||
* delete .idea file | ||
* update README and package.json | ||
* impl log level and template | ||
* add log feature | ||
* Initial commit |
@@ -49,3 +49,3 @@ 'use strict'; | ||
if (typeof stream === 'object' && typeof stream.name === 'string') { | ||
return super.addStream(this.predefinedStream(stream.name, stream), defaultLevel); | ||
return super.addStream(this.predefinedStream(stream.name, stream.options || stream), defaultLevel); | ||
} | ||
@@ -52,0 +52,0 @@ return super.addStream(stream, defaultLevel); |
{ | ||
"name": "bunyan-logger", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Extend Bunyan to have default options and predefined streams etc.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
8989
0