I am testing  LogCat:

public class MainActivity extends Activity {
    p
        private static final String Debug_Tag= "MyFirstAndroidApp";//Log Title
    @Override
    public void onCreate(Bundle savedInstanceState) {
        
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Log.i(Debug_Tag, "Info about My First AndroidApp");
        Log.v("tag", "something long");
        
       forceError();
        
    }

public void forceError(){
   if(true)
           throw new Error ("Whoops");
   }

After running the code, LogCat displays square characters instead of letters. 
Anybody knows what is the problem?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to