You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
329 B

import { ConsoleLogger } from '@nestjs/common';
export class NoopLogger extends ConsoleLogger {
error(message: any, trace?: string, context?: string) {}
warn(message: any, context?: string) {}
log(message: any, context?: string) {}
debug(message: any, context?: string) {}
verbose(message: any, context?: string) {}
}