Logging in Gradle build scripts
Did you know that it is really easy to log something in your Gradle build files? As the Gradle documentation explains, Gradle adds two log levels: QUIET
is used for important information messages, whereas LIFECYCLE
should be used to log progress information messages.
project.logger.quiet("Hello")
project.logger.lifecycle("world")
This is a (slightly updated) repost of a piece I published on my blog Tommi’s Blog. I deleted the blog in the wake of the GDPR, so the original version is no longer available, or only through the WayBack Machine of the Internet Archive. Please note: code usually has not been updated, so language feature reflect the time the original post was written.