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
fa043216
Commit
fa043216
authored
Feb 23, 2017
by
Devon Carew
Committed by
GitHub
Feb 23, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filter an ios simulator assert (#8357)
parent
093afe02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
simulators.dart
packages/flutter_tools/lib/src/ios/simulators.dart
+8
-3
No files found.
packages/flutter_tools/lib/src/ios/simulators.dart
View file @
fa043216
...
...
@@ -660,9 +660,8 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
static
final
RegExp
_flutterRunnerRegex
=
new
RegExp
(
r' FlutterRunner\[\d+\] '
);
/// List of log categories to always show in the logs, even if this is an
/// app-secific [DeviceLogReader]. Add to this list to make the log output
/// more verbose.
/// List of log categories to always show in the logs, even if this is an app-specific
/// [DeviceLogReader]. Add to this list to make the log output more verbose.
static
final
List
<
String
>
_whitelistedLogCategories
=
<
String
>[
'CoreSimulatorBridge'
,
];
...
...
@@ -694,6 +693,12 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
&&
content
.
endsWith
(
']: 0x1'
))
return
null
;
// assertion failed: 15G1212 13E230: libxpc.dylib + 57882 [66C28065-C9DB-3C8E-926F-5A40210A6D1B]: 0x7d
if
(
category
==
'Runner'
&&
content
.
startsWith
(
'assertion failed: '
)
&&
content
.
contains
(
' libxpc.dylib '
))
return
null
;
if
(
_appName
==
null
||
_whitelistedLogCategories
.
contains
(
category
))
return
'
$category
:
$content
'
;
else
if
(
category
==
_appName
)
...
...
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