* Logs a warning in the logger's context. * * @param message The message of the warning.
(message: string)
| 38 | * @param message The message of the warning. |
| 39 | */ |
| 40 | warn(message: string): void { |
| 41 | console.warn(`(${this.config.context}) Warning: ${message}`); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Uses node's util.inspect to stringify a value. |