Merge pull request #2171 from balena-io/debug-logging

logging: note that the device supervisor version is operative
This commit is contained in:
bulldozer-balena[bot] 2021-01-23 01:07:30 +00:00 committed by GitHub
commit d74af38bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}