I need to get log() commands from my users

NeoTechni

Well-Known Member
Licensed User
Longtime User
I know there is the logcat program you can get for B4A, what else is needed?
Without needing the SDK entirely, cause I can't get them to install that.
 

NeoTechni

Well-Known Member
Licensed User
Longtime User
Ah, for those of you (like me) that are too lazy for that, I've made a replacement sub

B4X:
Sub Debug(Text As String)
   Dim tempstr As TextWriter  
   tempstr.Initialize( File.OpenOutput(File.DirRootExternal,"error.txt",True) )
   tempstr.WriteLine(Text)
   tempstr.Close 
End Sub

Then you can just collect error.txt off the root of their SD card
 
Upvote 0
Top