Re: 回覆:Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
Yes the logcat -b radio worked for me to see the messages from Log.d -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to andr

Re: 回覆:Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
Yes that was what one person told me to try and it worked. I am happy. Thanks, Doug On Tue, May 3, 2011 at 10:20 PM, AL@TW wrote: > do you every try 'logcat -b radio' ? > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to t

Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
Well even with waitForDebugger() I wasn't able to get it to stop in onCreate() nor onResume() in my activity. However, I WAS able to get it to *stop *in the 'Done' button push I had on my UI. At that point however, I don't see the Phone activity that called it since it is in a different proces

Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
Joerie from android-porting helped me out! If you want to see Log messages from the telephony side you need to do: *adb logcat -b radio* * * * * -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
The process in question is I think: *com.android.settings*. At least that looks right. I think it is calling the activity started in packages/apps/Phone, file CallFeaturesSettings.java, when the "Call Settings" button is pressed in the OS's Settings. My process in eclipse only interacts with th

Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
Well when I try and hit the debug button on any system process (for example, com.android.settings), in the Devices panel, I just get a message saying: *'No opened project found for com.android.settings. Debug session failed!'* * * It also fails no matter what else you click on. For example, 'co

Re: [android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
The code is being executed from the *Call Settings *UI interface (under settings). [I am trying to put in my own 'Voicemail Service' in]. Thus I am not allowed to 'debug' this code from eclipse. So I am trying to put in debug messages so I can see what is going on that way. I will try to put in

[android-developers] Log.d messages in frameworks/.../android/internal/telephony not appearing

2011-05-03 Thread Douglas Selph
I turned on the logging in frameworks/base/telephony/java/com/android/internal/telephony/RIL.java. I then rebuilt and reflashed my developer phone. But I don't see any of the messages in the log. I also turned on Log.d messages in packages/apps/Phone and I DO see them just fine. Out of despe