From 4bd35cdbe9b70a73fea0b2fe9c52102624c8a677 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 26 Jan 2016 12:10:46 -0800 Subject: [PATCH] Minor update to the message logged when multiple devices are connected with no device ID specified --- packages/flutter_tools/lib/src/device.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/device.dart b/packages/flutter_tools/lib/src/device.dart index 83488b6b932..568b9b12bea 100644 --- a/packages/flutter_tools/lib/src/device.dart +++ b/packages/flutter_tools/lib/src/device.dart @@ -99,7 +99,8 @@ class DeviceStore { device = devices[0]; } else if (devices.length > 1) { // Step 3: D: - logging.severe('Warning: Multiple devices are connected, but no device ID was specified.'); + logging.fine('Multiple devices are connected, but no device ID was specified.'); + logging.fine('Attempting to launch on all connected devices.'); } return device;