Reputation: 20050
I am trying to use Android Studio as my main Android IDE.
One thing i'm used to having from Eclipse is the option to use DDMS to view logcat logs from the attached device.
I cannot seem to be able to achieve the same with Android Studio - it required me to create a new project before i can access logcat.
Is there any way to show logcat output or do i have to create a new project for that ?
Upvotes: 11
Views: 6505
Reputation: 425
You can use ADB, in cli.
adb logcat TAG:{V/D/I/W/E/F/S}
Check for https://developer.android.com/tools/logcat
Upvotes: 2
Reputation: 73753
I think what you want is View/Tool Windows/Android
(Alt+6 shortcut) that gives you access to the logcat
Upvotes: 2