Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find launch error logs for IntelliJ IDEA?

Whenever I try to open IntelliJ IDEA, it just quits immediately without any message whatsoever. I was wondering if there's a log somewhere I can find to hopefully figure out what's causing it. It was running fine when I used it a few months ago.

like image 985
Propeller Avatar asked Feb 20 '14 13:02

Propeller


People also ask

How do I find the error log in IntelliJ?

In the run/debug configuration that will be used for launching the app, click the Logs tab. The Edit Log Files Aliases table displays the list of log files. Specify the log Alias (the name that will be displayed in the tool window tabs) and the path to the log file.

Where are IntelliJ logs stored?

IntelliJIdea13 folder on the home directory. (For the Android adaptation it could also be in . AndroidStudioX.

How do I view IDE logs?

you can find the log in the bottom of the IDE, click the "Gradle Console", and then choose the "Android Monitor". You will see a Droplistbox control which shows "Verbose" as a default value. If you use log. v() .

Where is .idea folder in IntelliJ?

idea folder (hidden on OS X) in the solution root contains IntelliJ's project specific settings files. These include per-project details such as VCS mapping and run and debug configurations, as well as per-user details, such as currently open files, navigation history and currently selected configuration.


1 Answers

Depending on your OS. Product version is usually something like IntelliJIdea13, see Source for more information.

Windows

<SYSTEM DRIVE>\Users\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\system\log

Linux and Unix

~/.<PRODUCT><VERSION>

Mac OS X

~/Library/Logs/<PRODUCT><VERSION>

Source

like image 137
mnme Avatar answered Oct 21 '22 13:10

mnme