Log output confusion

rfresh

Well-Known Member
Licensed User
Longtime User
Please look at the attached image of my Log output. This is the log for a ServiceStart module. Can someone tell me why my Sub Service_Start (StartingIntent As Intent) event doesn't seem to be the one being called in the Log window?

The Log window shows "FTP StartServiceAt started" and that is NOT in my Sub ServiceStart event...why is that? Is there something going on that I don't know about?

I'm calling the Service_Start event every 30 secs and I'm expecting to see my Log() writes in the log window but they are not there!

I should add this is on an Acer 10 inch tablet. The log window works as exptected with this StartService event when I run my Droid2 and Droid3 devices. Maybe something is odd about the 10 inch tablet w/Honeycomb OS?

Thanks...
 

Attachments

  • 0.jpg
    0.jpg
    91.2 KB · Views: 267
Last edited:

rfresh

Well-Known Member
Licensed User
Longtime User
What do you mean? I'm only running the one app in the IDE...shouldn't that be the program writing to the Log window? How can another program write to the Log that I'm not running in the IDE? I don't understand.
 
Upvote 0

rfresh

Well-Known Member
Licensed User
Longtime User
@Tom I couldn't agree more. I did not mean for my reply to come off that way at all. I have nothing but the highest regard and respect for Erel.
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
shouldn't that be the program writing to the Log window?
No. The logs tab show the messages from Android built-in logging system. If you uncheck the "filter" option then you will see the messages from all applications. If the option is checked then you will only see messages with B4A tag. This means that you will see messages from all current running B4A applications. For example you can see messages from B4A-Bridge which is a B4A application.
 
Upvote 0
Top