We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45e97d6 + 1e9a55e commit 4658457Copy full SHA for 4658457
1 file changed
lib/controllers/migrate-controller.ts
@@ -163,11 +163,14 @@ Running this command will ${MigrateController.COMMON_MIGRATE_MESSAGE}`;
163
const cachedResult = await this.getCachedShouldMigrate(projectDir, platform);
164
if (cachedResult !== false) {
165
remainingPlatforms.push(platform);
166
+ } else {
167
+ this.$logger.trace(`Got cached result for shouldMigrate for platform: ${platform}`);
168
}
169
170
171
if (remainingPlatforms.length > 0) {
172
shouldMigrate = await this._shouldMigrate({ projectDir, platforms: remainingPlatforms, allowInvalidVersions });
173
+ this.$logger.trace(`Executed shouldMigrate for platforms: ${remainingPlatforms}. Result is: ${shouldMigrate}`);
174
175
if (!shouldMigrate) {
176
for (const remainingPlatform of remainingPlatforms) {
0 commit comments