intelliJidea加Gradle,在哪里可以找到Compiler Ouput?

gcb*_*gcb 8 ide intellij-idea gradle android-studio

不知道这是因为android-studio做错了什么,或者只是smartJ中所有gradle项目的共同点,但有时当我运行build/debug时,我得到的是:

Gradle: 
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':ProjectA:compileDebug'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Run Code Online (Sandbox Code Playgroud)

我似乎找不到任何获取更多信息的方法,因为这个文本已经出现在我认为是编译器输出的内容上.

我应该在哪里看?

Mat*_*ton 1

为了获得更好的信息,我所做的一件事是通过命令行转到项目根目录并运行

gradlew compileDebug
Run Code Online (Sandbox Code Playgroud)

这确实提供了更多信息,但我不能 100% 确定它运行与 IDE 相同的命令。