We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487aeb7 commit c79f0b8Copy full SHA for c79f0b8
lib/services/ios-log-filter.ts
@@ -14,10 +14,10 @@ export class IOSLogFilter implements Mobile.IPlatformLogFilter {
14
);
15
16
// Used to post filter messages that slip through but are not coming from NativeScript itself.
17
- // Looks text in parenthesis at the beginning
+ // Looks for text in parenthesis at the beginning
18
// Example:
19
// (RunningBoardServices) [com.apple.runningboard:connection] Identity resolved as application<...>
20
- // ^^^^^^^^^^^^^^^^^^^^
+ // ^(~~capture group~~~)^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21
// we then use this to filter out non-NativeScript lines
22
protected postFilterRegex: RegExp = /^\((.+)\) \[com\.apple.+\]/;
23
0 commit comments