* 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)
| 451 | * function that will return the message. |
| 452 | */ |
| 453 | finer(loggable) { |
| 454 | this.log(Level.FINER, loggable) |
| 455 | } |
| 456 | |
| 457 | /** |
| 458 | * Logs a message at the {@link Level.FINEST} log level. |
no test coverage detected