@openfn/logger
Advanced tools
Comparing version 0.0.11 to 0.0.12
@@ -23,2 +23,3 @@ declare type LogLevel = 'debug' | 'info' | 'default' | 'none'; | ||
name?: string; | ||
time: number; | ||
}; | ||
@@ -25,0 +26,0 @@ declare type StringLog = [LogFns | 'confirm' | 'print', ...any]; |
@@ -128,3 +128,4 @@ // src/logger.ts | ||
name, | ||
message: args.map((o) => sanitize_default(o, { stringify: false })) | ||
message: args.map((o) => sanitize_default(o, { stringify: false })), | ||
time: Date.now() | ||
}; | ||
@@ -131,0 +132,0 @@ emitter[level](stringify2(output)); |
{ | ||
"name": "@openfn/logger", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Cross-package logging utility", | ||
@@ -5,0 +5,0 @@ "module": "dist/index.js", |
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
12330
335