Remove "Instance of ServiceEvent" logs from flutter tool (#6600)

This commit is contained in:
Jason Simmons 2016-10-31 14:14:51 -07:00 committed by GitHub
parent cf2b732c0f
commit 960989e943

View File

@ -106,12 +106,6 @@ abstract class ResidentRunner {
vmService = await VMService.connect(port);
printTrace('Connected to service protocol on port $port');
await vmService.getVM();
vmService.onExtensionEvent.listen((ServiceEvent event) {
printTrace(event.toString());
});
vmService.onIsolateEvent.listen((ServiceEvent event) {
printTrace(event.toString());
});
// Refresh the view list.
await vmService.vm.refreshViews();