Sometimes apps get really big and it makes harder to debug the problem, the runtime errors in application does not include much info.
here is a small project im working on that adds a "debug mode" to the application.
So whenever the mode is enabled, it makes it a little easier to debug and locate problems.
it can be enabled / disabled just like debug mode in android studio.
For example, in the above procedure, the "procedureAddNames" causes errors.
and it can be traced easily through the debug feature:
That looks great. So to see the errors you have to use adb? It is not possible to get the info in a kind of read-only terminal at the bottom of the block editor for instance? It could be a setting to hide or show that terminal.
here is UI of wxbit, it has a debug panel, it can hold all the do it output, any error message.
Click the error message, will high light the block which cause this error.
Here is a method that I use for debugging. I miss having an output console for debugging, so I sort of made one using a multiline text box and a couple console procedures. I can plug in a call to one of these procedures and see what is going on with some variable or other.