Actuall the LogCat doesn't show anything... It's not like I am getting any errors/exceptions...
I have been using System.err.println in the Service, which print out just fine in Logcat... But, yes there is always a but :P, I don't want the service to "write" to the System.err but to my Logger class, which btw implements Console logging (to the System.err :P) and a http logger which simply sends a buffer of logs to my server... The class is imported : import myprojects.android.loggingModule.Logger; It just simply seems like the Service doesn't "see" the Logger class, they are in the same project, not specifically in the same Package though... Might it be that the Service is simply a independent Process itself with no ties to any other classes/objects ? On 22 jun, 15:47, Gyan <[email protected]> wrote: > Can you paste the logcat trace? > > Some hints > 1. Have u imported the class(logger) > 2. Debugging the service - sysouts > 3. Creating ur own - not advisable(might hamper responsiveness) - use the > existing Logger - just in case! > > Gyan -- 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

