{@inheritDoc Logger.debug}
(source: string, category: string, ...args: any)
| 292 | |
| 293 | /** {@inheritDoc Logger.debug} */ |
| 294 | debug(source: string, category: string, ...args: any) { |
| 295 | for (const logger of this.loggers) { |
| 296 | logger.debug(source, category, ...args); |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | /** {@inheritDoc Logger.info} */ |
| 301 | info(source: string, category: string, ...args: any) { |
no outgoing calls
no test coverage detected