Commit 9f0e6537 authored by Chinmay Garde's avatar Chinmay Garde

Update the regex used to filter out Flutter specific logs

parent 36a7c657
...@@ -409,12 +409,10 @@ class _IOSDeviceLogReader extends DeviceLogReader { ...@@ -409,12 +409,10 @@ class _IOSDeviceLogReader extends DeviceLogReader {
if (!device.isConnected()) if (!device.isConnected())
return 2; return 2;
// TODO(devoncarew): This regex should use the CFBundleIdentifier value from
// the user's plist (instead of `flutter.runner.Runner`).
return await runCommandAndStreamOutput( return await runCommandAndStreamOutput(
<String>[device.loggerPath], <String>[device.loggerPath],
prefix: '[$name] ', prefix: '[$name] ',
filter: new RegExp(r'(FlutterRunner|flutter.runner.Runner)') filter: new RegExp(r'Runner')
); );
} }
...@@ -477,7 +475,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader { ...@@ -477,7 +475,7 @@ class _IOSSimulatorLogReader extends DeviceLogReader {
_lastWasFiltered = false; _lastWasFiltered = false;
if (category == 'FlutterRunner' || category == 'Runner') if (category == 'Runner')
return content; return content;
return '$category: $content'; return '$category: $content';
} }
......
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