PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → Application Log
Application Log
Started by Binod Lohani, Oct., 27 2016 5:46 AM - 2 replies
Posted on October, 27 2016 - 5:46 AM
Hello Everyone!
What Would be the best way to record application log in android application ??
What Would be the (Basic) things to be recorded ??
Is there any open Source WM class to do that ??
Any idea ?
Thanks
Posted on October, 27 2016 - 10:53 AM
Hi

it depends what you call "application log". If it's a record of all the changes in the DB, than you can look at WXReplication for that... The principle I'm using here:
- global procedures called hadd/hmodify/hdelete are overloading the regular wlanguage functions
- in those, I write the details of the operation in WXreplication file (for the purpose of replication, but it IS a log of all the DB changes)
- then I of course do the regular wlanguage function

Best regards
Posted on October, 27 2016 - 12:19 PM
Thanks Fabrice .
That's Great !!
And how about recording ExceptionInfo() and ErrorInfo() and other crash Report..
Any example on that area ??