nestjs-logitron
Version:
Powerful logger module for Nodejs/ Nestjs, seamlessly integrating Pino and Winston for flexible logging with easy configuration.
11 lines (8 loc) • 307 B
text/typescript
import { LogLevel } from '../types/logger.types.mjs';
import 'pino';
import 'winston';
declare function formatLogMessage(logLevel: LogLevel, appName: string, message: string, execution?: {
name?: string;
time?: number;
}, ...optionalParams: any[]): string;
export { formatLogMessage as default };