logNotice function

void logNotice(
  1. String message
)

Logs a notice-level message.

Notices do not have an impact on the build, but most build systems will not display by default, and need to opt-in to higher verbosity in order to see the message.

Example messages:

  • "Ambiguous configuration, so we assumed X"
  • "This code is experimental"
  • "Took XX seconds to process Y"

Implementation

void logNotice(String message) => build.log.info(message);