* Logs a message at the Level.FINER log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 416 | * function that will return the message. |
| 417 | */ |
| 418 | finer(loggable) { |
| 419 | this.log(Level.FINER, loggable) |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * Logs a message at the {@link Level.FINEST} log level. |
no test coverage detected