* Logs a message at the Level.WARNING log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 380 | * function that will return the message. |
| 381 | */ |
| 382 | warning(loggable) { |
| 383 | this.log(Level.WARNING, loggable) |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * Logs a message at the {@link Level.INFO} log level. |