Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
9a136b87
Commit
9a136b87
authored
Oct 14, 2016
by
Adam Barth
Committed by
GitHub
Oct 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce logspam on iOS simulator (#6327)
Fixes #6311
parent
9ae7f490
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
simulators.dart
packages/flutter_tools/lib/src/ios/simulators.dart
+11
-0
No files found.
packages/flutter_tools/lib/src/ios/simulators.dart
View file @
9a136b87
...
...
@@ -700,6 +700,17 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
category
==
'searchd'
)
return
null
;
if
(
category
==
'CoreSimulatorBridge'
&&
content
.
startsWith
(
'Pasteboard change listener callback port'
))
return
null
;
if
(
category
==
'routined'
&&
content
.
startsWith
(
'CoreLocation: Error occurred while trying to retrieve motion state update'
))
return
null
;
if
(
category
==
'syslogd'
&&
content
==
'ASL Sender Statistics'
)
return
null
;
// assertiond: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
if
(
category
==
'assertiond'
&&
content
.
startsWith
(
'assertion failed: '
)
&&
content
.
endsWith
(
']: 0x1'
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment