* 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)
| 425 | * function that will return the message. |
| 426 | */ |
| 427 | finest(loggable) { |
| 428 | this.log(Level.FINEST, loggable) |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | /** |
no test coverage detected