How do I pass optional arguments, when using LogCat?
https://developer.android.com/studio/command-line/logcat
In particular Filtering log output
Sub Process_Globals
Dim logger As LogCat
Dim args(1) As String
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Phone_tester")
logger.LogCatStart(args,"MyLogCatName")
Sub MyLogCatName_LogCatData(Buffer() As Byte, Length As Int)
Dim data As String
data = BytesToString(Buffer,0,Length,"UTF-8")
https://developer.android.com/studio/command-line/logcat
In particular Filtering log output
Sub Process_Globals
Dim logger As LogCat
Dim args(1) As String
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Phone_tester")
logger.LogCatStart(args,"MyLogCatName")
Sub MyLogCatName_LogCatData(Buffer() As Byte, Length As Int)
Dim data As String
data = BytesToString(Buffer,0,Length,"UTF-8")