Commit 00062761 authored by Devon Carew's avatar Devon Carew

filter an assertiond log message from ios (#3692)

parent 93926d22
......@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment