Socket
Socket
Sign inDemoInstall

@workpop/simple-logger

Package Overview
Dependencies
2
Maintainers
17
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.1 to 1.3.2

10

CHANGELOG.md

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

<a name="1.3.2"></a>
## [1.3.2](https://github.com/Workpop/simple-logger/compare/v1.3.1...v1.3.2) (2018-05-30)
### Bug Fixes
* **json:** don't quote string arguments to log when serializing ([fbb8349](https://github.com/Workpop/simple-logger/commit/fbb8349))
<a name="1.3.1"></a>

@@ -7,0 +17,0 @@ ## [1.3.1](https://github.com/Workpop/simple-logger/compare/v1.3.0...v1.3.1) (2018-05-30)

7

lib/index.js

@@ -61,3 +61,8 @@ 'use strict';

ll = (0, _extends3.default)({}, base, {
message: (0, _lodash.map)(args, _util.inspect).join(' ')
message: (0, _lodash.map)(args, function (x) {
if ((0, _lodash.isString)(x)) {
return x;
}
return (0, _util.inspect)(x);
}).join(' ')
});

@@ -64,0 +69,0 @@ }

2

package.json
{
"name": "@workpop/simple-logger",
"version": "1.3.1",
"version": "1.3.2",
"description": "Simple console logger",

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc