recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
19 lines (18 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SilentLogger = void 0;
const common_1 = require("@nestjs/common");
const noop = () => { };
class SilentLogger extends common_1.Logger {
constructor() {
super(...arguments);
this.log = noop;
this.error = noop;
this.warn = noop;
this.debug = noop;
this.verbose = noop;
this.fatal = noop;
this.setLogLevels = noop;
}
}
exports.SilentLogger = SilentLogger;