Regarding logging, following features would be nice:
* Custom "tag" suffix for log filtering; Filtering options: "Current project" and "All B4A apps" (= all starting with B4A prefix)
* LogE/LogI/LogV/LogW functions (not that important, as can be quite easily implemented using reflection)
* Coloring in the debug log according to "prioriy constant" instead of log text prefixes like ~i:
BTW
* Custom "tag" suffix for log filtering; Filtering options: "Current project" and "All B4A apps" (= all starting with B4A prefix)
* LogE/LogI/LogV/LogW functions (not that important, as can be quite easily implemented using reflection)
* Coloring in the debug log according to "prioriy constant" instead of log text prefixes like ~i:
BTW
B4X:
Public Sub LogW(xText As String)
Dim xRef1 As Reflector
Dim xChar1 As String
xChar1 = "B4A"
xRef1.RunStaticMethod("android.util.Log", "w", Array As Object(xChar1, xText), Array As String("java.lang.String", "java.lang.String"))
End Sub