logging: note that the device supervisor version is operative

Change-type: patch
Signed-off-by: Matthew McGinn <matthew@balena.io>
This commit is contained in:
Matthew McGinn 2021-01-22 16:53:14 -05:00
parent 7181dc5401
commit 53926067ca
No known key found for this signature in database
GPG Key ID: 4FC50B47B75F63D8

View File

@ -152,7 +152,7 @@ export async function deployToDevice(opts: DeviceDeployOptions): Promise<void> {
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);
}