0

As shared in https://stackoverflow.com/a/75441869/3286489, we have a way to print log out for KSP compilation.

However, the print out only shows WARNING and ERROR. If I want to have INFO, I'll need to set --verbose.

The question is, where or how can we set the --verbose in IntelliJ (Android Studio), so that in compilation, it will print the verbose log out (other than Warnings and Errors)?

Elye
  • 53,639
  • 54
  • 212
  • 474

2 Answers2

2

Edit run configuration and add --verbose to gradle command.

Example

darkxanter
  • 21
  • 2
1

Looks like I can set it in

Preference --> Compiler --> Commandline-Options

And write --info to it.

enter image description here

Elye
  • 53,639
  • 54
  • 212
  • 474