Which log class? You are aware that the log class, as implemented in android, makes a native call, which then pushes the information into a system logging utility.
(However, I did not know about this log separation, and would be interested to hear about it.) Perhaps the *logcat* utility is simply not showing these tags, as it assumes they are getting in the way of what the programs on the phone are doing, and not something the programmer needs to see? In which case to diagnose this you'd have to go through the logcat sources? I'd be interested to hear where this is happening: I'm assuming that what's going on is that his message is being put in the system logger, however filtered out by default on the logcat due to some niceties that it uses to make it helpful for the programmer..., Kris On Tue, Jan 3, 2012 at 1:30 AM, Mukesh Srivastav <[email protected]> wrote: > Where did u got that information, i have read the whole Log class and > couldnt find it any where. > > Warm Regards, > Mukesh Kumar, > Android Consultant/Freelancer, > India,Hyderabad > > On Tue, Jan 3, 2012 at 11:49 AM, srihari babu <[email protected]> > wrote: >> >> Hi All, >> There are actually 4 ring buffers in android which will store different >> log data. >> one of them is default which will be shown in log cat window. >> Still there are 3 other buffers which will log data but won't show in >> LogCat window. >> There is a separate buffer for all telephony related log messages, which >> won't appear in default LogCat window. >> >> Regards, >> Srihari, >> Hyderabad >> >> -- >> 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 > > > > > -- > . > > -- > 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 -- 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

