@instana/aws-lambda
Advanced tools
Comparing version 2.14.1 to 2.14.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.14.2](https://github.com/instana/nodejs/compare/v2.14.1...v2.14.2) (2023-01-16) | ||
### Bug Fixes | ||
* **aws-lambda:** respect INSTANA_LOG_LEVEL ([#681](https://github.com/instana/nodejs/issues/681)) ([8c00a0c](https://github.com/instana/nodejs/commit/8c00a0cf905d0c21fb56d10496087a8a07599b51)) | ||
## [2.14.1](https://github.com/instana/nodejs/compare/v2.14.0...v2.14.1) (2023-01-12) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@instana/aws-lambda", | ||
"version": "2.14.1", | ||
"version": "2.14.2", | ||
"description": "Instana tracing and monitoring for Node.js based AWS Lambdas", | ||
@@ -71,4 +71,4 @@ "author": { | ||
"dependencies": { | ||
"@instana/core": "2.14.1", | ||
"@instana/serverless": "2.14.1" | ||
"@instana/core": "2.14.2", | ||
"@instana/serverless": "2.14.2" | ||
}, | ||
@@ -78,3 +78,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "4044eba96b67343b4f03a515887ab677f70ae408" | ||
"gitHead": "c14515435c1f5f16e0bb78692a6a4fbb61e49e19" | ||
} |
@@ -228,3 +228,7 @@ /* | ||
logger = config.logger; | ||
} else if (process.env.INSTANA_DEBUG || config.level || process.env.INSTANA_LOG_LEVEL) { | ||
} else { | ||
config.logger = logger; | ||
} | ||
if (process.env.INSTANA_DEBUG || config.level || process.env.INSTANA_LOG_LEVEL) { | ||
logger.setLevel(process.env.INSTANA_DEBUG ? 'debug' : config.level || process.env.INSTANA_LOG_LEVEL); | ||
@@ -231,0 +235,0 @@ } |
59346
1190
+ Added@instana/core@2.14.2(transitive)
- Removed@instana/core@2.14.1(transitive)
Updated@instana/core@2.14.2
Updated@instana/serverless@2.14.2