logFine function
Logs a fine-level message
.
Messages do not have an impact on the build, and most build systems will not display by default, and need to opt-in to higher verbosity in order to see the message.
These are closer to debug-only messages.
Implementation
void logFine(String message) => build.log.fine(message);