(message: string, payload?: LogPayload)
| 289 | this.emitAt('info', message, payload); |
| 290 | } |
| 291 | debug(message: string, payload?: LogPayload): void { |
| 292 | this.emitAt('debug', message, payload); |
| 293 | } |
| 294 | |
| 295 | createChild(ctx: LogContext): Logger { |
| 296 | return new LoggerImpl({ ...this.boundCtx, ...ctx }); |