UNPKG

524 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/* eslint-disable @typescript-eslint/no-empty-function */
4/* eslint-disable @typescript-eslint/no-unused-vars */
5const common_1 = require("@nestjs/common");
6class TestingLogger extends common_1.Logger {
7 constructor() {
8 super('Testing');
9 }
10 log(message) { }
11 warn(message) { }
12 error(message, trace) {
13 return common_1.Logger.error(message, trace, 'ExceptionHandler');
14 }
15}
16exports.TestingLogger = TestingLogger;