@5app/logger
Advanced tools
Comparing version 2.2.0 to 2.3.0
@@ -0,1 +1,8 @@ | ||
# [2.3.0](https://github.com/5app/logger/compare/v2.2.0...v2.3.0) (2022-02-07) | ||
### Features | ||
* **stacktrace:** Show entire stacktrace ([#67](https://github.com/5app/logger/issues/67)) ([11564b2](https://github.com/5app/logger/commit/11564b2e69c07a92215893daae4cfbce330b8c29)) | ||
# [2.2.0](https://github.com/5app/logger/compare/v2.1.0...v2.2.0) (2021-02-23) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@5app/logger", | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"description": "Simple logger used in 5app microservices", | ||
@@ -27,15 +27,15 @@ "main": "src/index.js", | ||
"devDependencies": { | ||
"@commitlint/cli": "^12.0.0", | ||
"@commitlint/config-conventional": "^12.0.0", | ||
"@semantic-release/changelog": "^5.0.1", | ||
"@semantic-release/git": "^9.0.0", | ||
"eslint": "^7.20.0", | ||
"eslint-config-5app": "^0.14.2", | ||
"eslint-plugin-promise": "^4.3.1", | ||
"@commitlint/cli": "^16.0.0", | ||
"@commitlint/config-conventional": "^16.0.0", | ||
"@semantic-release/changelog": "^6.0.0", | ||
"@semantic-release/git": "^10.0.0", | ||
"eslint": "^8.0.0", | ||
"eslint-config-5app": "^0.15.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"eslint-plugin-security": "^1.4.0", | ||
"husky": "^5.1.1", | ||
"lint-staged": "^10.5.4", | ||
"mocha": "^8.3.0", | ||
"semantic-release": "^17.3.9", | ||
"sinon": "^9.2.4" | ||
"husky": "^7.0.0", | ||
"lint-staged": "^12.0.0", | ||
"mocha": "^9.0.0", | ||
"semantic-release": "^19.0.0", | ||
"sinon": "^13.0.0" | ||
}, | ||
@@ -42,0 +42,0 @@ "lint-staged": { |
@@ -9,3 +9,3 @@ const {ERROR} = require('./constants'); | ||
error: data.message, | ||
stacktrace: data.stack ? data.stack.split('\n').slice(1, 3).map(line => line.trim()) : undefined, | ||
stacktrace: data.stack ? data.stack.split('\n').map(line => line.trim()) : undefined, | ||
statusCode: data.statusCode | ||
@@ -12,0 +12,0 @@ }; |
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
15113