* 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)
| 407 | * function that will return the message. |
| 408 | */ |
| 409 | fine(loggable) { |
| 410 | this.log(Level.FINE, loggable) |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Logs a message at the {@link Level.FINER} log level. |