New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gracelog

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gracelog - npm Package Compare versions

Comparing version 0.6.6 to 0.6.7

20

CHANGELOG.md
# Change log
## Version 0.6.7
## Added
None
## Changed
#### Writting log data exception catch causes unexpected problem with cleaning up: Removed
## Deprecated
None
## Removed
None
***
## Version 0.6.6

@@ -4,0 +24,0 @@

34

logger.js

@@ -150,22 +150,18 @@ var async = require('./lib/async');

try {
// if console is enabled, we output to console
if (this.config.console) {
switch (levelName) {
case 'error':
case 'fatal':
console.error(logMsg.message);
break;
case 'warn':
case 'warning':
console.warn(logMsg.message);
break;
default:
console.log(logMsg.message);
break;
}
// if console is enabled, we output to console
if (this.config.console) {
switch (levelName) {
case 'error':
case 'fatal':
console.error(logMsg.message);
break;
case 'warn':
case 'warning':
console.warn(logMsg.message);
break;
default:
console.log(logMsg.message);
break;
}
} catch (e) {
// we do nothing
}

@@ -172,0 +168,0 @@

{
"name": "gracelog",
"description": "Log management module",
"version": "0.6.6",
"version": "0.6.7",
"author": "Nobuyori Takahashi <voltrue2@yahoo.com>",

@@ -6,0 +6,0 @@ "repository": {

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