@team-supercharge/nest-amqp
Version:
AMQP 1.0 module for Nest framework
13 lines (12 loc) • 515 B
TypeScript
import { LoggerService } from '@nestjs/common';
export declare class Logger implements LoggerService {
private readonly context;
private static instance;
constructor(context?: string);
static overrideLogger(logger: LoggerService): void;
log(message: any, context?: string): void;
error(message: any, trace?: string, context?: string): void;
warn(message: any, context?: string): void;
debug(message: any, context?: string): void;
verbose(message: any, context?: string): void;
}