Skip to content

Commit 64085d8

Browse files
committed
chore: fix commets
1 parent 90121dc commit 64085d8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/definitions/livesync.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ interface ILiveSyncEventData {
187187
deviceIdentifier: string,
188188
applicationIdentifier?: string,
189189
projectDir: string,
190-
syncedFiles?: Object
190+
syncedFiles?: string[],
191191
error? : Error,
192192
notification?: string,
193193
isFullSync?: boolean

lib/services/livesync/livesync-service.ts

+1
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,7 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
790790
}
791791

792792
public emitLivesyncEvent (event: string, livesyncData: ILiveSyncEventData): boolean {
793+
this.$logger.trace(`Will emit event ${event} with data`, livesyncData);
793794
return this.emit(event, livesyncData);
794795
}
795796

0 commit comments

Comments
 (0)