UNPKG

nodejs-logitron

Version:

Powerful logger module for Nodejs/ Nestjs, seamlessly integrating Pino and Winston for flexible logging with easy configuration.

8 lines (5 loc) 191 B
import { ILoggerOptions, ILogger } from '../types/index.mjs'; import 'pino'; import 'winston'; declare function getLogger({ type, options }: ILoggerOptions): ILogger; export { getLogger };