Where Can I Get Logcat
Solution 1:
Two way to open logcat window..
1)first shortcut
2)Via Menu
window=>ShowView=>select other... =>search logcat
Solution 2:
in eclipse
window-->showview-->logcat
if logcat is not directly present, then
window-->showview-->others(then select logcaqt there)
HTH :)
Solution 3:
In Eclipse you can find Logcat here
Eclipse->Window->showview->Logcat
If you don't find logcat option here choose it from other
option
For command line
goto android-sdk/platform-tools/
adb logcat
Solution 4:
Unfortunately I can't find LogCat in my SDK or anywhere else on my hard drive.
=> FYI, Logcat is not a platform tool but a part of ADB.
As you have downloaded ADT Bundle Windows, you can find out ADB inside platform-tools folder:
\adt-bundle-windows\sdk\platform-tools
Yes if you want to see Logcat output on console, then type adb logcat
at console having above path.
Solution 5:
you can find Logcat in Eclipse here :
Window -> Show View -> Other -> Android -> Logcat
Post a Comment for "Where Can I Get Logcat"