* Logs a message at the Level.DEBUG log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 433 | * function that will return the message. |
| 434 | */ |
| 435 | debug(loggable) { |
| 436 | this.log(Level.DEBUG, loggable) |
| 437 | } |
| 438 | |
| 439 | /** |
| 440 | * Logs a message at the {@link Level.FINE} log level. |