Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fill the 'Application' column in LogCat (Android-14+)

Tags:

android

Starting from android sdk and Eclipse plugin 14 (Android 4.0), the LogCat view includes a column "Application". This column is empty when I write log messages, but contains the package name of my application when android system code is executed in the context of my application.

It would be neat to be able to filter by Application to get all relevant log output; but I cannot find any documentation on how to set this... any ideas?

like image 234
marc1s Avatar asked Nov 20 '11 17:11

marc1s


1 Answers

If your apk is signed try by setting android:debuggable="true" in your Manifest file, that did the trick for me. You can find more info here: https://stackoverflow.com/a/10074263/2508527

If your problem is only with the monitor tool and not with the Eclipse LogCat try this: https://stackoverflow.com/a/17974702/2508527

like image 182
David Martínez Pérez Avatar answered Nov 04 '22 05:11

David Martínez Pérez