Skip to content

Commit 88c6adc

Browse files
committed
fix: replace %s with deviceIdentifier on debug command
1 parent 0d23a29 commit 88c6adc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class LiveSyncServiceBase implements ILiveSyncServiceBase {
247247
action.call(this.$logger, util.format(message, path.basename(file.getLocalPath()).yellow), deviceIdentifier);
248248
});
249249
} else {
250-
action.call(this.$logger, util.format(message, "all files"));
250+
action.call(this.$logger, util.format(message, "all files", deviceIdentifier));
251251
}
252252
}
253253

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export abstract class PlatformLiveSyncServiceBase {
145145
action.call(this.$logger, util.format(message, path.basename(file.getLocalPath()).yellow), deviceIdentifier);
146146
});
147147
} else {
148-
action.call(this.$logger, util.format(message, "all files"));
148+
action.call(this.$logger, util.format(message, "all files", deviceIdentifier));
149149
}
150150
}
151151
}

0 commit comments

Comments
 (0)