Reduce logspam on iOS simulator (#6327)

Fixes #6311
This commit is contained in:
Adam Barth 2016-10-14 11:06:10 -07:00 committed by GitHub
parent 9ae7f4903e
commit 9a136b8722

View File

@ -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'))