I have tried to import my project in to android studio.The error will be shown.I need to know where do I get logs?
Consult IDE log for more details (Help | Show Log)
I have tried to import my project in to android studio.The error will be shown.I need to know where do I get logs?
Consult IDE log for more details (Help | Show Log)
On a Mac, the idea.log is contained in
/Users/<user>/Library/Logs/AndroidStudio/idea.log
The new stable version (1.2) is in
/Users/<user>/Library/Logs/AndroidStudio1.2/
The new stable version (2.2) is in
/Users/<user>/Library/Logs/AndroidStudio2.2/
The new stable version (3.4) is in
/Users/<user>/Library/Logs/AndroidStudio3.4/
(From auspicious99 comment)
On MacOS Catalina and Big Sur (at least), Android Studio 4.1, the idea.log can be found in,
/Users/<user>/Library/Logs/Google/AndroidStudio4.1/
In windows version
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() . Verbose option is okay. if you use log.d(), just change it to Debug.
So when you run your emulator, you can catch your log from this window.