@jalik/logger
Advanced tools
Comparing version 3.1.1 to 3.1.2
@@ -11,8 +11,8 @@ import { LogEvent, LogEventContext } from './util'; | ||
declare class Logger { | ||
private active; | ||
private defaultContext?; | ||
private filter?; | ||
private level; | ||
private name?; | ||
private outputs; | ||
active: boolean; | ||
defaultContext?: LogEventContext; | ||
filter?: (event: LogEvent<LogEventContext>) => boolean; | ||
level: string; | ||
name?: string; | ||
outputs: Array<(ev: LogEvent<LogEventContext>) => void>; | ||
constructor(options?: LoggerOptions); | ||
@@ -19,0 +19,0 @@ /** |
@@ -11,8 +11,8 @@ import { LogEvent, LogEventContext } from './util'; | ||
declare class Logger { | ||
private active; | ||
private defaultContext?; | ||
private filter?; | ||
private level; | ||
private name?; | ||
private outputs; | ||
active: boolean; | ||
defaultContext?: LogEventContext; | ||
filter?: (event: LogEvent<LogEventContext>) => boolean; | ||
level: string; | ||
name?: string; | ||
outputs: Array<(ev: LogEvent<LogEventContext>) => void>; | ||
constructor(options?: LoggerOptions); | ||
@@ -19,0 +19,0 @@ /** |
{ | ||
"name": "@jalik/logger", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "A logging utility to log messages to anywhere.", | ||
@@ -51,4 +51,4 @@ "license": "MIT", | ||
"@jest/globals": "^29.5.0", | ||
"@typescript-eslint/eslint-plugin": "^5.58.0", | ||
"@typescript-eslint/parser": "^5.58.0", | ||
"@typescript-eslint/eslint-plugin": "^5.59.0", | ||
"@typescript-eslint/parser": "^5.59.0", | ||
"eslint": "^8.25.0", | ||
@@ -55,0 +55,0 @@ "eslint-plugin-import": "^2.26.0", |
# @jalik/logger | ||
![GitHub package.json version](https://img.shields.io/github/package-json/v/jalik/js-logger.svg) | ||
![GitHub](https://img.shields.io/github/license/jalik/js-logger.svg) | ||
![Build Status](https://github.com/jalik/js-logger/actions/workflows/node.js.yml/badge.svg) | ||
![Last commit](https://img.shields.io/github/last-commit/jalik/js-logger.svg) | ||
![Build Status](https://github.com/jalik/js-logger/actions/workflows/node.js.yml/badge.svg) | ||
[![GitHub issues](https://img.shields.io/github/issues/jalik/js-logger.svg)](https://github.com/jalik/js-logger/issues) | ||
![GitHub](https://img.shields.io/github/license/jalik/js-logger.svg) | ||
![npm](https://img.shields.io/npm/dt/@jalik/logger.svg) | ||
@@ -9,0 +9,0 @@ |
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
51953