UNPKG

@lsk4/log

Version:

Yet another logger whitch combines the best features of debug, bunyan, logfmt/logrus, morgan/winston

21 lines (18 loc) 495 B
import { Color } from '@lsk4/colors'; import { Theme } from './types.js'; declare const levelsPriority: { start: number; log: number; fatal: number; error: number; warn: number; success: number; info: number; debug: number; trace: number; }; declare const theme: Theme; declare const themeLight: Theme; declare const randomColors: Color[][]; declare const contentColors: Color[][]; export { contentColors, levelsPriority, randomColors, theme, themeLight };