Commit 5f7b8999 authored by Yegor's avatar Yegor Committed by GitHub

add more logging from ios simulator in verbose mode (#4928)

parent 46ccd879
...@@ -786,6 +786,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader { ...@@ -786,6 +786,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
String _lastLine; String _lastLine;
void _onDeviceLine(String line) { void _onDeviceLine(String line) {
printTrace('[DEVICE LOG] $line');
Match multi = _lastMessageMultipleRegex.matchAsPrefix(line); Match multi = _lastMessageMultipleRegex.matchAsPrefix(line);
if (multi != null) { if (multi != null) {
...@@ -808,6 +809,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader { ...@@ -808,6 +809,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
} }
void _onSystemLine(String line) { void _onSystemLine(String line) {
printTrace('[SYS LOG] $line');
if (!_flutterRunnerRegex.hasMatch(line)) if (!_flutterRunnerRegex.hasMatch(line))
return; return;
......
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