https://github.com/NativeScript/nativescript-cli/issues/2818 - When an app was started the CLI's logging filter would parse each incoming adb line and check it against a regex that either JS: was the tag used, or that any of the accepted tags's string was contained within the logcat line.
That would at times return incorrect, or incomplete logs.
Proposed solution
Read the process id for the application process from adb, then filter logs by the pid.
Problem
https://github.com/NativeScript/nativescript-cli/issues/2818 - When an app was started the CLI's logging filter would parse each incoming adb line and check it against a regex that either
JS:
was the tag used, or that any of the accepted tags's string was contained within the logcat line. That would at times return incorrect, or incomplete logs.Proposed solution
Read the process id for the application process from adb, then filter logs by the pid.