@applitools/logger
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -6,2 +6,6 @@ # Changelog | ||
## 1.0.7 - 2021/12/16 | ||
- change log file name in rolling file handler to not contain windows forbidden characters. | ||
## 1.0.6 - 2021/11/23 | ||
@@ -8,0 +12,0 @@ |
{ | ||
"name": "@applitools/logger", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Applitools logger", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -18,3 +18,3 @@ const path = require('path') | ||
function open() { | ||
const filepath = path.resolve(dirname, `${name}-${new Date().toISOString()}.log`) | ||
const filepath = path.resolve(dirname, `${name}-${new Date().toISOString().replace(/[-T:.]/g, '_')}.log`) | ||
ensureDirectoryExistence(filepath) | ||
@@ -21,0 +21,0 @@ writer = fs.createWriteStream(filepath, {flags: 'a', encoding: 'utf8'}) |
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
27148