Skip to content

Commit 0576a20

Browse files
committed
chore: fix comments
1 parent 7813560 commit 0576a20

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
@@ -794,6 +794,7 @@ export class LiveSyncService extends EventEmitter implements IDebugLiveSyncServi
794794
}
795795

796796
public emitLivesyncEvent (event: string, livesyncData: ILiveSyncEventData): boolean {
797+
this.$logger.trace(`Will emit event ${event} with data`, livesyncData);
797798
return this.emit(event, livesyncData);
798799
}
799800

0 commit comments

Comments
 (0)