HI All
I created a thread for a procedure a bit long. I see that in the case of exception, does not return the message in the log.
how can I do?
thanks
I created a thread for a procedure a bit long. I see that in the case of exception, does not return the message in the log.
how can I do?
thanks
B4X:
private sub Import
Dim mThread As Thread
mThread.Initialise("Thread1")
Dim aOk As Boolean = mThread.Start(Me, "Import_Data", Array As Object(aBO))
end sub
Private Sub Import_Data (aParam As Object )
try
Catch
Log(LastException)
End Try
end sub