Logcat Warning / Log Errors

When I connect my galaxy s3 mini via ADB and try to debug the application using Android studio, I get endless error messages / warnings in logcat, non-stop messages go like crazy. This is normal? Usually with an emulator, I don't get tons of messages in logcat. How can I fix this problem? here how logcat looks like http://pastebin.com/JaVhYaCt or http://i.imgur.com/aaavMZm.png?1

By the way, I can still test applications.

+4
source share
2 answers

This is normal?

- , , . bare-bones , .

?

, , "" . , .

, , , logcat TAG.

...

package com.mycompany.mypackage

public class MyActivity extends Activity {

    protected final String TAG = getClass().getName();

}

TAG "com.mycompany.mypackage.MyActivity". protected , , MyActivity, TAG.

`Log.d(TAG, "Some text" );

"com.mycompany.mypackage", .

+5

- (logcat , ).

, logcat, . , ( S: * - "" ). - ( SHOWTAG1, SHOWTAG2:

adb logcat SHOWTAG1:* SHOWTAG2:* S:*

eclipse (, , Android Studio, ) Logcat, Regex , .

, Logcat , , , .

+1

All Articles