PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Application Log
Application Log
Iniciado por guest, 27,oct. 2016 05:46 - 2 respuestas
Publicado el 27,octubre 2016 - 05:46
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
Publicado el 27,octubre 2016 - 10:53
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
Publicado el 27,octubre 2016 - 12:19
Thanks Fabrice .
That's Great !!
And how about recording ExceptionInfo() and ErrorInfo() and other crash Report..
Any example on that area ??