When running applications, show only the logs within the *Console* window (remove the spinner/loader with showing the application name and a timestamp)
Hi!
I just kicked off a new machine, with a fresh install of everything, and for whatever reason when I run a service in Intellij IDEA Ultimate, the Console window is weirdly split.
It shows the logs in one part and shows a spinner/loader (?) with the application class that is running, in addition to a timestamp indicating for how long it is running.
On the screenshot below, I'm referring to this:
[loader-icon] authentication-service [... 9 min, 38 sec
[loader-icon] :AuthenticationApplica... 9 min, 37 sec
How can I remove this left part of the Console window entirely, and have the logs horizontally expand?
In addition to that, I noticed that there are some common buttons missing.
Specifically the Attach Debugger, Dump Threads, Clear All (logs) etc. This is the layout that I somehow don't have. Why could this be?
请先登录再写评论。
> How can I remove this left part of the Console window entirely, and have the logs horizontally expand?
The newer IDEA version uses the Gradle runner to run it by default, which has a different layout/feature set.
You could open `Settings | Build, Execution, Deployment | Build Tools | Gradle`, change the `Build and Run using` to `IntelliJ iDEA` and rerun the application to remove the left side part.
Feel free to vote for the related issue here: https://youtrack.jetbrains.com/issue/IDEA-219295/
> Specifically the Attach Debugger, Dump Threads, Clear All (logs) etc. This is the layout that I somehow don't have. Why could this be?
After you use `IntelliJ iDEA` in `Settings | Build, Execution, Deployment | Build Tools | Gradle | Build and Run using` and restart the app, you will see these buttons on the left again.
Thanks Lejia Chen this solved it!