Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-cloudwatch-log

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-cloudwatch-log - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="0.1.2"></a>
## [0.1.2](https://github.com/nicolasdao/aws-cloudwatch-logger/compare/v0.1.1...v0.1.2) (2017-12-18)
### Bug Fixes
* Add string type support for the local variable so it can be passed 'false' ([11b8d96](https://github.com/nicolasdao/aws-cloudwatch-logger/commit/11b8d96))
<a name="0.1.1"></a>

@@ -7,0 +17,0 @@ ## [0.1.1](https://github.com/nicolasdao/aws-cloudwatch-logger/compare/v0.1.0...v0.1.1) (2017-12-18)

6

index.js

@@ -45,3 +45,3 @@ /**

const createLogStream = (logStreamName, { logGroupName, region, accessKeyId, secretAccessKey, local }) => {
if (local)
if (local && local != 'false')
return Promise.resolve({ message: 'No need to create stream. Local mode is on.' })

@@ -72,3 +72,3 @@

})
return request.post('', payload)

@@ -238,3 +238,3 @@ .then(results => results.data)

this.log = local ? console.log : log
this.log = local && local != 'false' ? console.log : log
}

@@ -241,0 +241,0 @@ }

{
"name": "aws-cloudwatch-log",
"version": "0.1.1",
"version": "0.1.2",
"description": "Fast & Simple Logging to AWS CloudWatch",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc