* Logs a message at the Level.FINEST log level. * @param {(string|function(): string)} loggable the message to log, or a * function that will return the message.
(loggable)
| 460 | * function that will return the message. |
| 461 | */ |
| 462 | finest(loggable) { |
| 463 | this.log(Level.FINEST, loggable) |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | /** |
no test coverage detected