@applitools/logger
Advanced tools
Comparing version 1.1.45 to 1.1.46
@@ -6,3 +6,3 @@ "use strict"; | ||
function makePrinter({ handler, format, level, ...defaults }) { | ||
return { debug, log, warn, error, fatal, verbose: log }; | ||
return { debug, log, info: log, warn, error, fatal, verbose: log }; | ||
function debug(...messages) { | ||
@@ -9,0 +9,0 @@ if (level < log_level_1.LogLevel.debug) |
{ | ||
"name": "@applitools/logger", | ||
"version": "1.1.45", | ||
"version": "1.1.46", | ||
"description": "Applitools logger", | ||
@@ -65,3 +65,3 @@ "keywords": [ | ||
"devDependencies": { | ||
"@applitools/bongo": "^2.2.2", | ||
"@applitools/bongo": "^2.2.5", | ||
"@types/debug": "^4.1.7", | ||
@@ -68,0 +68,0 @@ "@types/mocha": "^9.1.1", |
@@ -17,2 +17,3 @@ import { type Handler } from './handler'; | ||
log(...messages: any[]): void; | ||
info(...messages: any[]): void; | ||
warn(...messages: any[]): void; | ||
@@ -19,0 +20,0 @@ error(...messages: any[]): void; |
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
43174
618