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

@furystack/logging

Package Overview
Dependencies
Maintainers
1
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@furystack/logging - npm Package Compare versions

Comparing version 7.0.1 to 7.0.2

35

CHANGELOG.md

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

4

esm/logger.spec.js

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

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