From c8672a40c1958c1471c52345e5707a6e3a4ee445 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Thu, 14 Jan 2016 17:19:12 -0800 Subject: [PATCH] Fix Dart analyzer warning --- packages/flutter_tools/lib/src/device.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/device.dart b/packages/flutter_tools/lib/src/device.dart index 32ebf3c566..f113af1c59 100644 --- a/packages/flutter_tools/lib/src/device.dart +++ b/packages/flutter_tools/lib/src/device.dart @@ -433,7 +433,7 @@ class IOSSimulator extends Device { @override Future startApp(ApplicationPackage app) async { - logging.fine('Building ${app.name} for ${id}'); + logging.fine('Building ${app.name} for $id'); // Step 1: Build the Xcode project bool buildResult = await _buildIOSXcodeProject(app, false);