-
-
Notifications
You must be signed in to change notification settings - Fork 197
on ios "ns run" displays a lot of low level log messages #5626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@rigor789 thanks for the tip. Now that I know the correct repo I was able to identify the problamtic code: The But a lot of UIKitCore messages are containing these texts. Like:
Any Idea why the regex is so generic? My simple approch to solve the problem would be to simplify the regex and remove the |
This fix works for me. But it fails with the unittests. When I find some time I will look into this and create a merge request. |
@mrh1997 nice - I think just adjusting the regex would be enough without the manual I think just adding a non-capturing group at the end of the regex for `^.*(?:<Notice>:|<Error>|<Warning>:|${this.appOutputRegex.source}:)(?:\s+CONSOLE){1}` But would need to test it to make sure... |
After some further tests with my fix proposal I realized that it won't work. Mainly it suffers from 2 problems:
|
Some news about this ? |
No news at this point. When there are news the issue will be tagged/closed/commented-on etc. |
Issue Description
When running a app on ios I get a lot of messages as soon as touch events are seen (in contrary to android!). This makes debugging much more difficult, as my own debug log messages get lost within this amount of log irrelevant messages.
Reproduction
To repoduce:
Relevant log output (if applicable)
Environment
Dependencies
Please accept these terms
The text was updated successfully, but these errors were encountered: