* 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)
| 389 | * function that will return the message. |
| 390 | */ |
| 391 | info(loggable) { |
| 392 | this.log(Level.INFO, loggable) |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * Logs a message at the {@link Level.DEBUG} log level. |