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.
 
 
 
 
 

20 lines
514 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestingLogger = void 0;
const common_1 = require("@nestjs/common");
/**
* @publicApi
*/
class TestingLogger extends common_1.ConsoleLogger {
constructor() {
super('Testing');
}
log(message) { }
warn(message) { }
debug(message) { }
verbose(message) { }
error(message, ...optionalParams) {
return super.error(message, ...optionalParams);
}
}
exports.TestingLogger = TestingLogger;