From 546cef5277d69eae0c8a6fef31fae7ce94ca8e9e Mon Sep 17 00:00:00 2001 From: Dan Rubel Date: Thu, 10 Nov 2016 15:48:49 -0500 Subject: [PATCH] trace IntelliJ config and install locations on Linux (#6805) --- packages/flutter_tools/lib/src/doctor.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/flutter_tools/lib/src/doctor.dart b/packages/flutter_tools/lib/src/doctor.dart index 09f16140106..eec587e65e1 100644 --- a/packages/flutter_tools/lib/src/doctor.dart +++ b/packages/flutter_tools/lib/src/doctor.dart @@ -323,6 +323,7 @@ class IntelliJValidatorOnLinux extends IntelliJValidator { String name = path.basename(dir.path); IntelliJValidator._idToTitle.forEach((String id, String title) { if (name.startsWith('.$id')) { + printTrace('Found IntelliJ config: ${dir.path}'); String version = name.substring(id.length + 1); String installPath; try { @@ -331,6 +332,7 @@ class IntelliJValidatorOnLinux extends IntelliJValidator { // ignored } if (installPath != null && FileSystemEntity.isDirectorySync(installPath)) { + printTrace('Found IntelliJ installation: $installPath'); String pluginsPath = path.join(dir.path, 'config', 'plugins'); validators.add(new IntelliJValidatorOnLinux(title, version, pluginsPath)); }