Skip to content

Commit b6d6063

Browse files
author
Fatme
authored
Merge pull request #3979 from NativeScript/fatme/fix-missing-placeholder
fix: replace %s with deviceIdentifier on debug command
2 parents a8df3e7 + 88c6adc commit b6d6063

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)