diff --git a/tools/ade b/tools/ade index 366692ca3a3615c93d56a4ae64bccd6ba061b320..fa1bdb28c826c6321cab2086df5e4c2202696ce3 100755 --- a/tools/ade +++ b/tools/ade @@ -467,7 +467,7 @@ class SysrootManager: # Don't fail on this check as it's broken for current images if installed.version != version: - logging.warning("Mismatch between installed version and expected one") + logging.warning("Mismatch between installed version ({0}) and expected one ({1})".format(installed.version, version)) return installed @@ -574,7 +574,7 @@ class SysrootManager: # Don't fail on this check as it's broken for current images if f.version != version: - logging.warning("Mismatch between downloaded version and expected one") + logging.warning("Mismatch between downloaded version ({0}) and expected one ({1})".format(f.version, version)) return f