To develop applications for Android, I try to get logcat messages from my real device (when running the application on it from eclipse), and not just from my emulator.
Does anyone know how to enable such a feature?
You need to enable USB debugging on your device. Go to settings, applications, development and check "USB Debugging". Then, when your device is connected via USB, you can see its name in DDMS, as if it were a different emulator.
, ddms eclipse, , .
Log Collector ( Market), , .
Log Collector
.
adb shell getprop
<application .... android:debuggable="true">
adb shell setprop log.debug_level 1
I think you should first install the appropriate usb driver for your Android device, then your eclipse will recognize your device as an Android device and start debugging