New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vladmandic/pilogger

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vladmandic/pilogger - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

18

dist/pilogger.d.ts

@@ -56,11 +56,11 @@ /// <reference types="node" />

export declare function headerJson(): void;
export declare const blank: (...message: string[]) => Promise<void>;
export declare const info: (...message: string[]) => Promise<void>;
export declare const state: (...message: string[]) => Promise<void>;
export declare const data: (...message: string[]) => Promise<void>;
export declare const warn: (...message: string[]) => Promise<void>;
export declare const error: (...message: string[]) => Promise<void>;
export declare const fatal: (...message: string[]) => Promise<void>;
export declare const verbose: (...message: string[]) => Promise<void>;
export declare const debug: (...message: string[]) => Promise<void>;
export declare const blank: (...message: any[]) => Promise<void>;
export declare const info: (...message: any[]) => Promise<void>;
export declare const state: (...message: any[]) => Promise<void>;
export declare const data: (...message: any[]) => Promise<void>;
export declare const warn: (...message: any[]) => Promise<void>;
export declare const error: (...message: any[]) => Promise<void>;
export declare const fatal: (...message: any[]) => Promise<void>;
export declare const verbose: (...message: any[]) => Promise<void>;
export declare const debug: (...message: any[]) => Promise<void>;
//# sourceMappingURL=pilogger.d.ts.map
{
"name": "@vladmandic/pilogger",
"version": "0.4.1",
"version": "0.4.2",
"description": "Simple Logger for NodeJS",

@@ -5,0 +5,0 @@ "main": "dist/pilogger.js",

@@ -212,10 +212,10 @@ import * as os from 'os';

// actual log methods
export const blank = (...message: string[]) => log('blank', ...message);
export const info = (...message: string[]) => log('info', ...message);
export const state = (...message: string[]) => log('state', ...message);
export const data = (...message: string[]) => log('data', ...message);
export const warn = (...message: string[]) => log('warn', ...message);
export const error = (...message: string[]) => log('error', ...message);
export const fatal = (...message: string[]) => log('fatal', ...message);
export const verbose = (...message: string[]) => log('verbose', ...message);
export const debug = (...message: string[]) => log('debug', ...message);
export const blank = (...message: any[]) => log('blank', ...message);
export const info = (...message: any[]) => log('info', ...message);
export const state = (...message: any[]) => log('state', ...message);
export const data = (...message: any[]) => log('data', ...message);
export const warn = (...message: any[]) => log('warn', ...message);
export const error = (...message: any[]) => log('error', ...message);
export const fatal = (...message: any[]) => log('fatal', ...message);
export const verbose = (...message: any[]) => log('verbose', ...message);
export const debug = (...message: any[]) => log('debug', ...message);

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