Skip to content

Commit a8a99ab

Browse files
committed
Merge pull request #1295 from NativeScript/totev/fast-livesync-timestamps
Timestamps for fast LiveSync
2 parents c1ec4e6 + 2b9317d commit a8a99ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/services/usb-livesync-service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import * as semver from "semver";
99
import * as net from "net";
1010
import Future = require("fibers/future");
1111
import * as helpers from "../common/helpers";
12+
import * as moment from "moment";
1213

1314
export class UsbLiveSyncService extends usbLivesyncServiceBaseLib.UsbLiveSyncServiceBase implements IUsbLiveSyncService {
1415

@@ -149,7 +150,7 @@ export class UsbLiveSyncService extends usbLivesyncServiceBaseLib.UsbLiveSyncSer
149150
});
150151
}
151152

152-
this.$logger.info(`Successfully synced application ${this.$projectData.projectId}.`);
153+
this.$logger.info(`Successfully synced application ${this.$projectData.projectId} at ${moment().format("ll LTS")}.`);
153154
}).future<void>()();
154155
});
155156
};

0 commit comments

Comments
 (0)