Android Question Turn Off ** Service Log Messages

Robert Valentino

Well-Known Member
Licensed User
Longtime User
Is there ANY way to turn off the Service Log Messages when in Debug

I have a service that starts it self 10 times a second does something quick and ends.

All the ** Service (xxxx) Start messages are stopping me from seeing messages I want.

Can I turn off these log messages?

Thanks

BobVal
 

DonManfred

Expert
Licensed User
Longtime User
DONT start the service so often. Start it once and use a timer to redo some work after 100ms...
 
Upvote 0

Robert Valentino

Well-Known Member
Licensed User
Longtime User
I had a timer, but after reading other posts I thought using a StartServiceAt was better.

Guess I will go back to a timer.
 
Upvote 0
Top