(bindings: Bindings, options?: ChildLoggerOptions)
| 26 | |
| 27 | export interface FastifyBaseLogger extends Pick<BaseLogger, 'level' | 'info' | 'error' | 'debug' | 'fatal' | 'warn' | 'trace' | 'silent'> { |
| 28 | child(bindings: Bindings, options?: ChildLoggerOptions): FastifyBaseLogger |
| 29 | } |
| 30 | |
| 31 | // TODO delete FastifyLoggerInstance in the next major release. It seems that it is enough to have only FastifyBaseLogger. |
no outgoing calls