Mezzanine icon indicating copy to clipboard operation
Mezzanine copied to clipboard

Warning -> Info in gradle task output

Open kvenn opened this issue 7 years ago • 2 comments

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".

screen shot 2018-04-02 at 4 00 59 pm

kvenn avatar Apr 02 '18 20:04 kvenn

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.

anthonycr avatar Apr 06 '18 16:04 anthonycr

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.

anthonycr avatar Apr 09 '18 14:04 anthonycr