Warning -> Info in gradle task output
Summary
Type: Feature Enhancement The gradle task output currently shows as a warning but isn't any indication of something that could be wrong. Therefore it might be better suited as an "info".
This is caused by a change to the Kotlin compiler: https://github.com/JetBrains/kotlin/pull/1524
All NOTE type messages are now being outputted as warnings. Unfortunately, using println() to print log messages instead does not work like it does in Java projects, so I can't switch to that for logging.
The temporary solution is to remove logging altogether (since the amount of info being logged is quite small) until either I find an appropriate way to log at the info level or until a change is made to the Kotlin compiler.
This is temporarily fixed in release 1.1.1. I am leaving the issue open though as a reminder to myself to revisit once there is some resolution to the issue in the Kotlin compiler.