(logInfo: LogObject)
| 27 | } |
| 28 | |
| 29 | public error(logInfo: LogObject) { |
| 30 | this.logger.log("error", logInfo.message, { |
| 31 | ...logInfo, |
| 32 | message: undefined, |
| 33 | }); |
| 34 | } |
| 35 | |
| 36 | public debug(logInfo: LogObject) { |
| 37 | this.logger.log("debug", logInfo.message, { |
no test coverage detected