Skip to content

Commit

Permalink
filter an assertiond log message from ios (flutter#3692)
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed May 3, 2016
1 parent 93926d2 commit 0006276
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/flutter_tools/lib/src/ios/simulators.dart
Expand Up @@ -731,6 +731,11 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
category == 'searchd')
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'))
return null;

_lastWasFiltered = false;

if (category == 'Runner')
Expand Down

0 comments on commit 0006276

Please sign in to comment.