Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@applitools/logger

Package Overview
Dependencies
Maintainers
24
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/logger - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

4

CHANGELOG.md

@@ -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 @@

2

package.json
{
"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'})

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