diff --git a/lib/services/livesync/platform-livesync-service-base.ts b/lib/services/livesync/platform-livesync-service-base.ts index fc08a776a5..5d290f016b 100644 --- a/lib/services/livesync/platform-livesync-service-base.ts +++ b/lib/services/livesync/platform-livesync-service-base.ts @@ -30,7 +30,7 @@ export abstract class PlatformLiveSyncServiceBase { public async refreshApplication(projectData: IProjectData, liveSyncInfo: ILiveSyncResultInfo): Promise { if (liveSyncInfo.isFullSync || liveSyncInfo.modifiedFilesData.length) { const deviceLiveSyncService = this.getDeviceLiveSyncService(liveSyncInfo.deviceAppData.device, projectData); - this.$logger.info("Refreshing application..."); + this.$logger.info(`Refreshing application on device ${liveSyncInfo.deviceAppData.device.deviceInfo.identifier}...`); await deviceLiveSyncService.refreshApplication(projectData, liveSyncInfo); } } diff --git a/lib/services/platform-service.ts b/lib/services/platform-service.ts index 0133219b0e..763d8c1bb2 100644 --- a/lib/services/platform-service.ts +++ b/lib/services/platform-service.ts @@ -481,7 +481,7 @@ export class PlatformService extends EventEmitter implements IPlatformService { } public async installApplication(device: Mobile.IDevice, buildConfig: IBuildConfig, projectData: IProjectData, packageFile?: string, outputFilePath?: string): Promise { - this.$logger.out("Installing..."); + this.$logger.out(`Installing on device ${device.deviceInfo.identifier}...`); await this.$analyticsService.trackEventActionInGoogleAnalytics({ action: constants.TrackActionNames.Deploy,