简体   繁体   中英

Android LogCat Logging way too much stuff

Android Logcat is logging way too much stuff on real device and sometimes the emulator.

My Settings are: Show only selected application but then it says above No Debuggable Applications .

The Log Level is currently on Debug

Here is an example:

05-29 04:53:36.173      414-464/? I/WifiHW﹕ CMD: SIGNAL_POLL
05-29 04:53:36.193      414-464/? I/WifiHW﹕ REPLY: RSSI=-50
05-29 04:53:36.193      414-464/? I/WifiHW﹕ REPLY: LINKSPEED=65
05-29 04:53:36.193      414-464/? I/WifiHW﹕ REPLY: NOISE=9999
05-29 04:53:36.193      414-464/? I/WifiHW﹕ REPLY: FREQUENCY=0
05-29 04:53:36.223      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:50.000000
05-29 04:53:36.483      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:51.000000
05-29 04:53:36.743      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:50.000000
05-29 04:53:36.873      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:51.000000
05-29 04:53:37.003      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:50.000000
05-29 04:53:37.133      414-427/? E/Sensors﹕ pjn=== LightSensor, als_value:51.000000

In your Apps you will have something like :

Log.v(TAG, "Test"); 

For Android Studio:

In your Logcat filter, type in what you have for TAG

For Eclipse:

In your Logcat filter, type in what you have for TAG preceded by tag:

For example: tag:MY_TAG

If it says No Debuggable Applications :

Article Answered on Stackoverflow

You also should have Tools->Android->Enable ADB Integration active.

Got the final solution here.

If android studio shows that

No Debuggable Applications

Then there must be a dropDown list nearby.

Next, choose the application you desire to see it's logs in the dropDown list.

And the idle logs will just disappear finally.

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM