Hello

I'm newbie in Android.
My project target is to analyze Android framework and dalvik.
Especially, to check workflow, I use System.out.println (not Log.d).
In case, System.out.println works well like below

   System.out.println("!!! OpenSSLSocketImpl::Init");
  ==>   I/System.out(  313): !!! OpenSSLSocketImpl::Init

But, I wonder why new line happen in this case
   System.out.println("AAAA\nBBBB");
  ==>  I/System.out(  xxx): AAA
  ==>  I/System.out(  xxx): BBB

I want to print like this
  ==>  I/System.out(  xxx): AAA
          BBB

Could you tell me how adb logcat print the (I/System.out(xxx):)  just
once time?


-- 
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