Display retry firmware update messages with regular color because they're not errors.

This commit is contained in:
László Monda
2017-12-27 22:38:07 +01:00
parent a0b838b2e9
commit 2b3462c33f

View File

@@ -89,7 +89,7 @@ export async function retry(command: Function, maxTry = 3, logService?: LogServi
throw err;
} else {
if (logService) {
logService.error(`[retry] failed, but try run FUNCTION:\n ${command}, \n retry: ${retryCount}`);
logService.info(`[retry] failed, but try run FUNCTION:\n ${command}, \n retry: ${retryCount}`);
}
}
}