MaciejF
MaciejF

Reputation: 546

In IntelliJ IDEA, is there a way to see background task output?

Say I'm importing new project and it's taking way too long in my opinion. Background task is stuck for example at "Gradle: build".

How can I debug (verify), if it's doing anything? Is there a way to see any specific output?

Upvotes: 10

Views: 8479

Answers (2)

Ortomala Lokni
Ortomala Lokni

Reputation: 62733

You can look at the log file of IntelliJ IDEA. For macOS run:

tail -f ~/Library/Logs/JetBrains/IntelliJIdea2023.3/idea.log

with the correct path corresponding to your IntelliJ version. For Linux and Windows, same principle, see Advanced configuration - Logs directory

Upvotes: 0

CrazyCoder
CrazyCoder

Reputation: 402523

There is already an open feature request for that, please feel free to vote:

  • IDEA-157505 View Gradle output when importing project

Upvotes: 3

Related Questions