UNPKG

rrios-logger

Version:

![validation](https://github.com/rriosper/logger/workflows/Validation/badge.svg?branch=master) ![publish](https://github.com/rriosper/logger/workflows/Publish/badge.svg?branch=master) ![npm bundle size](https://img.shields.io/bundlephobia/min/rrios-logger

9 lines (8 loc) 331 B
import { Logger, LoggerOptions } from 'winston'; export declare type CreateLoggerInputProps = { level?: LoggerOptions['level']; dir?: string; meta?: Record<string, string>; development?: boolean; }; export declare const createLogger: ({ meta, dir, development, level, }?: CreateLoggerInputProps) => Logger;