Commit 9a136b87 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Reduce logspam on iOS simulator (#6327)

Fixes #6311
parent 9ae7f490
......@@ -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'))
......
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