We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1ec4e6 commit 2b9317dCopy full SHA for 2b9317d
lib/services/usb-livesync-service.ts
@@ -9,6 +9,7 @@ import * as semver from "semver";
9
import * as net from "net";
10
import Future = require("fibers/future");
11
import * as helpers from "../common/helpers";
12
+import * as moment from "moment";
13
14
export class UsbLiveSyncService extends usbLivesyncServiceBaseLib.UsbLiveSyncServiceBase implements IUsbLiveSyncService {
15
@@ -149,7 +150,7 @@ export class UsbLiveSyncService extends usbLivesyncServiceBaseLib.UsbLiveSyncSer
149
150
});
151
}
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")}.`);
154
}).future<void>()();
155
156
};
0 commit comments