File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
flutter-idea/src/io/flutter Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,13 @@ public class FlutterInitializer extends FlutterProjectActivity {
84
84
85
85
@ Override
86
86
public void executeProjectStartup (@ NotNull Project project ) {
87
- LOG .info ("starting executeProjectStartup" );
87
+ LOG .info ("Executing Flutter plugin startup for project: " + project . getName () );
88
88
// Disable the 'Migrate Project to Gradle' notification.
89
89
FlutterUtils .disableGradleProjectMigrationNotification (project );
90
90
91
- LOG .info ("Starting watching for devices" );
92
91
// Start watching for devices.
93
92
DeviceService .getInstance (project );
94
93
95
- LOG .info ("Starting a DevTools server" );
96
94
// Start a DevTools server
97
95
DevToolsService .getInstance (project );
98
96
@@ -111,7 +109,7 @@ public void executeProjectStartup(@NotNull Project project) {
111
109
continue ;
112
110
}
113
111
114
- LOG .info ("This is a Flutter module" );
112
+ LOG .info ("Flutter module has been found for project: " + project . getName () );
115
113
// Ensure SDKs are configured; needed for clean module import.
116
114
FlutterModuleUtils .enableDartSDK (module );
117
115
Original file line number Diff line number Diff line change @@ -81,12 +81,11 @@ public void run(@NotNull ProgressIndicator progressIndicator) {
81
81
try {
82
82
progressIndicator .setFraction (30 );
83
83
progressIndicator .setText2 ("Init" );
84
- LOG .info ("Here we are in DevTools run " );
84
+ LOG .info ("Finding or starting DevTools" );
85
85
86
86
// If the `dart devtools` command is not supported, start the daemon instead.
87
87
final boolean dartDevToolsSupported = dartSdkSupportsDartDevTools ();
88
88
if (!dartDevToolsSupported ) {
89
- LOG .info ("Starting the DevTools daemon." );
90
89
progressIndicator .setFraction (60 );
91
90
progressIndicator .setText2 ("Daemon set-up" );
92
91
setUpWithDaemon ();
You can’t perform that action at this time.
0 commit comments