Skip to content

Commit cefa22f

Browse files
author
Fatme
authored
Merge pull request #4022 from NativeScript/fatme/msg
fix: show deviceIdentifier on installing and refreshing messages
2 parents 7aa666d + 4c69cc8 commit cefa22f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/services/livesync/platform-livesync-service-base.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export abstract class PlatformLiveSyncServiceBase {
3030
public async refreshApplication(projectData: IProjectData, liveSyncInfo: ILiveSyncResultInfo): Promise<void> {
3131
if (liveSyncInfo.isFullSync || liveSyncInfo.modifiedFilesData.length) {
3232
const deviceLiveSyncService = this.getDeviceLiveSyncService(liveSyncInfo.deviceAppData.device, projectData);
33-
this.$logger.info("Refreshing application...");
33+
this.$logger.info(`Refreshing application on device ${liveSyncInfo.deviceAppData.device.deviceInfo.identifier}...`);
3434
await deviceLiveSyncService.refreshApplication(projectData, liveSyncInfo);
3535
}
3636
}

lib/services/platform-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ export class PlatformService extends EventEmitter implements IPlatformService {
481481
}
482482

483483
public async installApplication(device: Mobile.IDevice, buildConfig: IBuildConfig, projectData: IProjectData, packageFile?: string, outputFilePath?: string): Promise<void> {
484-
this.$logger.out("Installing...");
484+
this.$logger.out(`Installing on device ${device.deviceInfo.identifier}...`);
485485

486486
await this.$analyticsService.trackEventActionInGoogleAnalytics({
487487
action: constants.TrackActionNames.Deploy,

0 commit comments

Comments
 (0)