I would like to see a separate output tab where we can "log" information independently from the system logs, with the ability to clear. This would make it easier for us to see the progression of our app without the system log window getting too cluttered.
Example.
Example.
B4X:
For x = 1 To 5
outPutClear
Output("Loop " & x )
For y = 1 To 5
Output("This is line " & y & " on the output tab with a random number " & Rnd(100, 10000) )
Next
Next