Amit Battan
Amit Battan

Reputation: 3018

Android LogCat is not working for emulator

I am new in Android and java programming.
LogCat is woking fine for one of my emulator.
But same time it is not working for another emulator.

Can any body tell me any specific setting for it.

EDIT
@all DDMS Screenshot, I am using MAC operating system enter image description here

@Shlublu
Its working fine with API Level 8 and Build In WVGA800
but not working with HVGA
sometime also not working with WVGA800

Amit Battan

Upvotes: 3

Views: 12417

Answers (4)

user370305
user370305

Reputation: 109237

enter image description here

Look, top right side of your eclipse ide -> from java choose ddms -> then from ddms window bottom click on other -> devices -> then your emulator for which you want to show logcat Try this.

Upvotes: 13

Mohit Verma
Mohit Verma

Reputation: 3025

Goto DDMS --> Select Device --> Select Name

It may be Emulator 5554, Emulator 5556

Upvotes: 2

Anthony Nolan
Anthony Nolan

Reputation: 2348

if you run adb devices you will get a list of devices attached to your Android Debug Bridge. You can run a command on a specific one by adding the -s switch, so this

adb -s devicename logcat

should give you what you need.

Anthony

Upvotes: 0

Kamal
Kamal

Reputation: 1415

Go to DDMS and select the Emulator you want to dispaly hte logCat. And come back to the JAVA perspective. It will show the logs of selected emulator.

Upvotes: 0

Related Questions