Android Question Looking for a service...

Hi.
I'm looking for a service like crashlytic's logging
SS-2017-12-21_11.15.34.png



B4X:
Sub Activity_Click
'//Something like this
   CL.CLog("log message...")
End Sub


But the only problem is that these logs are sent just when there is a crash.
I'm looking for a service like this so i can send logs without "crash"ing my application. If you know such a service please help me.
Thanks a lot.
 

JohnC

Expert
Licensed User
Longtime User
Firebase Analytics supports a ".SendEvent" method that can "log" (events) in addition to doing crash reporting.

B4X:
Starter.analytics.SendEvent(Eventtext, Null)

Refer to the firebase documentation for more info on this.
 
Last edited:
Upvote 0
Firebase Analytics supports an ".SendEvent" method that can "logs" (events) besides crash reporting

B4X:
Starter.analytics.SendEvent(Eventtext, Null)

Refer to the firebase documentation for more info on this.
How much does it take to appear in the firebase console?
I Sent an event but it didn't appear in the console.

Edit: Looks like it takes several hours. But that's not a problem.
Thank you @JohnC
 
Last edited:
Upvote 0
Top