Skip to content

Commit 5f7b899

Browse files
authored
add more logging from ios simulator in verbose mode (flutter#4928)
1 parent 46ccd87 commit 5f7b899

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/flutter_tools/lib/src/ios/simulators.dart

+2
Original file line numberDiff line numberDiff line change
@@ -786,6 +786,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
786786
String _lastLine;
787787

788788
void _onDeviceLine(String line) {
789+
printTrace('[DEVICE LOG] $line');
789790
Match multi = _lastMessageMultipleRegex.matchAsPrefix(line);
790791

791792
if (multi != null) {
@@ -808,6 +809,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
808809
}
809810

810811
void _onSystemLine(String line) {
812+
printTrace('[SYS LOG] $line');
811813
if (!_flutterRunnerRegex.hasMatch(line))
812814
return;
813815

0 commit comments

Comments
 (0)