mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
parent
9ae7f4903e
commit
9a136b8722
@ -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'))
|
||||
|
Loading…
Reference in New Issue
Block a user