From 53926067caeb8d021b3ff1dae600c3eab4946426 Mon Sep 17 00:00:00 2001 From: Matthew McGinn Date: Fri, 22 Jan 2021 16:53:14 -0500 Subject: [PATCH] logging: note that the device supervisor version is operative Change-type: patch Signed-off-by: Matthew McGinn --- lib/utils/device/deploy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/device/deploy.ts b/lib/utils/device/deploy.ts index c0d374bf..bfc3c2f7 100644 --- a/lib/utils/device/deploy.ts +++ b/lib/utils/device/deploy.ts @@ -152,7 +152,7 @@ export async function deployToDevice(opts: DeviceDeployOptions): Promise { try { const version = await api.getVersion(); - globalLogger.logDebug(`Checking device version: ${version}`); + globalLogger.logDebug(`Checking device supervisor version: ${version}`); if (!semver.satisfies(version, '>=7.21.4')) { throw new ExpectedError(versionError); }