* 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)
| 398 | * function that will return the message. |
| 399 | */ |
| 400 | debug(loggable) { |
| 401 | this.log(Level.DEBUG, loggable) |
| 402 | } |
| 403 | |
| 404 | /** |
| 405 | * Logs a message at the {@link Level.FINE} log level. |