@kitql/helper
Advanced tools
Comparing version
17
index.js
@@ -8,2 +8,3 @@ 'use strict'; | ||
const pino = _interopDefault(require('pino')); | ||
const PinoPretty = _interopDefault(require('pino-pretty')); | ||
@@ -23,12 +24,10 @@ function logGreen(str) { | ||
class Log { | ||
constructor(toolName) { | ||
constructor(toolName, options = null) { | ||
const { sync = false, withTime = false, withlevelKey = true } = options !== null && options !== void 0 ? options : {}; | ||
this.toolName = toolName; | ||
this.logger = pino({ | ||
transport: { | ||
target: 'pino-pretty', | ||
options: { | ||
colorize: true | ||
} | ||
} | ||
}); | ||
this.logger = pino(PinoPretty({ | ||
sync, | ||
translateTime: withTime ? true : false, | ||
ignore: `pid,hostname${withTime ? '' : ',time'}${withlevelKey ? '' : ',level'}` | ||
})); | ||
} | ||
@@ -35,0 +34,0 @@ info(msg) { |
15
Log.d.ts
@@ -1,11 +0,16 @@ | ||
export declare function logGreen(str: any): string; | ||
export declare function logMagneta(str: any): string; | ||
export declare function logRed(str: any): string; | ||
export declare function logCyan(str: any): string; | ||
export declare function logGreen(str: string): string; | ||
export declare function logMagneta(str: string): string; | ||
export declare function logRed(str: string): string; | ||
export declare function logCyan(str: string): string; | ||
export declare type Options = { | ||
sync?: boolean | null; | ||
withTime?: boolean | null; | ||
withlevelKey?: boolean | null; | ||
}; | ||
export declare class Log { | ||
private toolName; | ||
private logger; | ||
constructor(toolName: String); | ||
constructor(toolName: string, options?: Options | null); | ||
info(msg: string): void; | ||
error(msg: string): void; | ||
} |
{ | ||
"name": "@kitql/helper", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"dependencies": { | ||
@@ -10,3 +10,3 @@ "pino": "7.8.0", | ||
"type": "git", | ||
"url": "https://github.com/jycouet/kitql.git", | ||
"url": "https://github.com/jycouet/kitql", | ||
"directory": "packages/helper" | ||
@@ -13,0 +13,0 @@ }, |
Sorry, the diff of this file is not supported yet
5780
11.11%159
1.92%