Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "pino", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "fast and simple logger", | ||
@@ -5,0 +5,0 @@ "main": "pino.js", |
@@ -166,3 +166,3 @@ 'use strict' | ||
value = serializers[key] ? serializers[key](value) : value | ||
data += '"' + key + '":' + stringify(value) | ||
data += '"' + key + '":' + stringify(value) + ',' | ||
} | ||
@@ -173,3 +173,3 @@ } | ||
safe: safe, | ||
meta: data, | ||
meta: data.substr(0, data.length - 1), | ||
level: level, | ||
@@ -176,0 +176,0 @@ serializers: serializers |
@@ -408,2 +408,7 @@ # pino | ||
### v1.1.1 | ||
* [#22](https://github.com/mcollina/pino/pull/22) fix json output | ||
### v1.1.0 | ||
@@ -410,0 +415,0 @@ |
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
443736
453