* Logs a message at the Level.FINE log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 442 | * function that will return the message. |
| 443 | */ |
| 444 | fine(loggable) { |
| 445 | this.log(Level.FINE, loggable) |
| 446 | } |
| 447 | |
| 448 | /** |
| 449 | * Logs a message at the {@link Level.FINER} log level. |