* Logs a message at the Level.INFO log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 392 | * function that will return the message. |
| 393 | */ |
| 394 | info(loggable) { |
| 395 | this.log(Level.INFO, loggable) |
| 396 | } |
| 397 | |
| 398 | /** |
| 399 | * Logs a deprecation notice at the {@link Level.WARNING} log level, once per |