Socket
Socket
Sign inDemoInstall

electron-log

Package Overview
Dependencies
Maintainers
1
Versions
152
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-log - npm Package Compare versions

Comparing version 2.2.16 to 2.2.17

2

package.json
{
"name": "electron-log",
"version": "2.2.16",
"version": "2.2.17",
"description": "Just a very simple logging module for your Electron application",

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

@@ -27,3 +27,3 @@ 'use strict';

ipcRenderer.on('__ELECTRON_LOG_RENDERER__', function(event, level, text) {
ipcRenderer.on('__ELECTRON_LOG_RENDERER__', function(event, level, data) {
if (level === 'verbose') {

@@ -35,3 +35,6 @@ level = 'log';

originalConsole[level].call(originalConsole.context, text);
originalConsole[level].apply(
originalConsole.context,
typeof data === 'string' ? [data] : data
);
});

@@ -38,0 +41,0 @@ }

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