@lsk4/log
Version:
Yet another logger whitch combines the best features of debug, bunyan, logfmt/logrus, morgan/winston
9 lines (6 loc) • 352 B
TypeScript
import { ILoggerMeta } from '../types.js';
import '@lsk4/colors';
declare function countInRow(args: any[], filter: any): number;
declare function concatFirstStrings(...args: any[]): string[];
declare function prettyFormat(meta: ILoggerMeta, ...args: any[]): string[];
export { concatFirstStrings, countInRow, prettyFormat as default, prettyFormat };