electron-log
Advanced tools
Comparing version 5.2.0 to 5.2.2
{ | ||
"name": "electron-log", | ||
"version": "5.2.0", | ||
"version": "5.2.2", | ||
"description": "Just a simple logging module for your Electron application", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -151,2 +151,3 @@ 'use strict'; | ||
date: new Date(), | ||
logId: this.logId, | ||
...message, | ||
@@ -153,0 +154,0 @@ level, |
@@ -63,3 +63,3 @@ 'use strict'; | ||
const minutesPositive = Math.abs(minutesOffset); | ||
const sign = minutesOffset >= 0 ? '-' : '+'; | ||
const sign = minutesOffset > 0 ? '-' : '+'; | ||
const hours = Math.floor(minutesPositive / 60).toString().padStart(2, '0'); | ||
@@ -66,0 +66,0 @@ const minutes = (minutesPositive % 60).toString().padStart(2, '0'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
91325
2910