@furystack/logging
Advanced tools
Comparing version 7.0.1 to 7.0.2
@@ -10,7 +10,2 @@ # Change Log | ||
### [2.0.86](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.84...@furystack/logging@2.0.86) (2022-01-10) | ||
@@ -20,7 +15,2 @@ | ||
### [2.0.85](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.84...@furystack/logging@2.0.85) (2022-01-10) | ||
@@ -30,7 +20,2 @@ | ||
### [2.0.84](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.83...@furystack/logging@2.0.84) (2021-12-08) | ||
@@ -40,7 +25,2 @@ | ||
### [2.0.83](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.82...@furystack/logging@2.0.83) (2021-11-19) | ||
@@ -50,7 +30,2 @@ | ||
### [2.0.82](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.81...@furystack/logging@2.0.82) (2021-10-05) | ||
@@ -60,7 +35,2 @@ | ||
### [2.0.81](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.51...@furystack/logging@2.0.81) (2021-08-19) | ||
@@ -70,9 +40,4 @@ | ||
### [2.0.80](https://github.com/furystack/furystack/compare/@furystack/logging@2.0.51...@furystack/logging@2.0.80) (2021-07-30) | ||
**Note:** Version bump only for package @furystack/logging |
@@ -215,3 +215,3 @@ import { using } from '@furystack/utils'; | ||
const message = { message: 'Example Fatal Message', scope }; | ||
consoleLogger.fatal(message); | ||
await consoleLogger.fatal(message); | ||
expect(consoleMock).toHaveBeenCalledWith(...defaultFormat({ ...message, level: 'fatal' })); | ||
@@ -221,3 +221,3 @@ }); | ||
const message = { message: 'Example Fatal Message', data: { a: 1 }, scope }; | ||
consoleLogger.fatal(message); | ||
await consoleLogger.fatal(message); | ||
expect(consoleMock).toHaveBeenCalledWith(...defaultFormat({ ...message, level: 'fatal' })); | ||
@@ -224,0 +224,0 @@ }); |
{ | ||
"name": "@furystack/logging", | ||
"version": "7.0.1", | ||
"version": "7.0.2", | ||
"description": "Logging API for FuryStack package", | ||
@@ -41,6 +41,6 @@ "type": "module", | ||
"dependencies": { | ||
"@furystack/inject": "^11.0.2", | ||
"@furystack/utils": "^7.0.1" | ||
"@furystack/inject": "^11.0.3", | ||
"@furystack/utils": "^7.0.2" | ||
}, | ||
"gitHead": "f83552be5dc0d48b087781b583111a4c88188082" | ||
} |
@@ -1,2 +0,1 @@ | ||
/* eslint-disable no-shadow */ | ||
/** | ||
@@ -3,0 +2,0 @@ * The verbosity level of a log entry |
@@ -249,3 +249,3 @@ import { using } from '@furystack/utils' | ||
const message = { message: 'Example Fatal Message', scope } | ||
consoleLogger.fatal(message) | ||
await consoleLogger.fatal(message) | ||
expect(consoleMock).toHaveBeenCalledWith(...defaultFormat({ ...message, level: 'fatal' })) | ||
@@ -255,3 +255,3 @@ }) | ||
const message = { message: 'Example Fatal Message', data: { a: 1 }, scope } | ||
consoleLogger.fatal(message) | ||
await consoleLogger.fatal(message) | ||
expect(consoleMock).toHaveBeenCalledWith(...defaultFormat({ ...message, level: 'fatal' })) | ||
@@ -258,0 +258,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
110201
1634
Updated@furystack/inject@^11.0.3
Updated@furystack/utils@^7.0.2